*{

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    height: 100%;
    width: 100%;
    background-color: black;
    
    
    
}
.main{
    height: 100%;
    width: 100%;
    background-color: black;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    white-space: nowrap;
   

}
.card{
    background-color: #fff;
    height: 400px;
    width: 300px;
    padding: 10px 20px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;

}
.card img{
    height: 250px;
    width: 250px;
    object-fit: cover;
    padding: 20px;
    border-radius: 50%;
   
   
}
.card h3{
    font-size:30px;
    white-space: nowrape;
}
.card h4{
    font-size: 20px;
    margin-top: 10px;
    color: crimson;
    margin-bottom: 10px;
}
