*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html,body{
    height: 100%;
    width: 100%;
}

main{
    height: 100%;
    width: 100%;
    background-color: black;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap :10px;
    align-items: flex-start;
}

.card
{
    width: 250px;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.card img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.card h3{
    font-size: 26px;
    white-space: nowrap;
}

.card h4{
    font-size: 18px;
    margin-top: 10px;
    color: crimson;
    margin-bottom: 10px;
}

.card p{
    font-size: 14px;
}