.g-conteiner
{
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(3,1fr);
    gap:30px;
}

.conteiner

{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:30px;
    background-color: antiquewhite;
    padding: 15px 15px;
    border-radius: 10px;
   box-shadow: 10px 10px 10px rgba(0,0,0,0.5);
   
}

.names
{
    font-size: 30px;
    font-weight: 600;
    color: black;
    margin-bottom: 32px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.next-list
{
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
    color: white;
    background-color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 30px;
}

.card
{
    display: flex;
    background-color: gray;
    width: 300px;
    flex-direction: column;
    
    justify-content: center;
    align-items: center;
    padding: 25px 15px;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
    gap: 10px;
    border-radius: 10px;
    
}