*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



body{
    background:#e6e6e6;
    min-height:100vh;
    padding:40px 20px;
}


.container{
    display:flex;
    flex-wrap: wrap;
    gap:40px;
    justify-content:center;
    margin-top: 80px;
    
}

/* CARD */
.card{
    width:260px;
    height:360px;
    background:#fff;
    border-radius:15px;
     overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
    transition: all 1s ease;
}

/* CARD HOVER*/
.card:hover{
    transform:scale(1.09);
}

/* IMG */
.imgBox{
    position:relative;
    width:100%;
    height:280px;
}

.imgBox img{
    width:100%;
    height:100%;
  
}

/* ICON */
.icons{
    position:absolute;
    top:20%;
    right:-50px;
     display:flex;
    flex-direction:column;
    gap:15px;
    transition: all  0.8s ;
}

.icons i{
    background:#ebdede;
    padding:10px;
    border-radius:50%;
    color: rgb(11, 10, 10);
    cursor:pointer;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

/* ICON HOVER*/
.card:hover .icons{
    right:15px;
}

/* NAME  */
.name{
    height:80px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    font-weight:600;
    letter-spacing:6px;
   
}

/* MOBILE RESPONSIVE */
@media  only screen and  (min-width:300px) and (max-width:600px){

    .container{
    
    display:grid;
    grid-template-columns: 1fr;
   gap:25px;
   margin-top: 0;
  
}
.card{
    margin: auto;
}

}

/* Tablet */
@media  only screen and  (min-width:600px) and (max-width:900px){
    .container{
        margin-top: 0;
    }
}