.card__container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: -30px;
}

.card{
    position: relative;
    width: 180px;
    height: 150px;
    margin: 20px;
    border-radius: 10px;
    overflow: hidden; 
}

.card:hover{
    transform: scale(1.2) translateY(-20px);
    transition: transform 0.5s ease;
    cursor: pointer;
}

.card img{
    width: 100%;
    height: 180px;
}
