.card__container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: -50px;
}

.card{
    position: relative;
    width: 60px;
    height: 60px;
    margin: 5px;
    border-radius: 10px;
    overflow: hidden;
    border-radius: 100px;
}

.card img{
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0.6;
}

img:hover{
    opacity: 1;
}

.card:hover{
    opacity: 1;
    transform: scale(1.1) translateY(-10px);
    transition: transform .5s ease;
}

video{
    position: relative;
    margin: auto;
    width: 403px;
    height: 100%;
    border-radius: 20px;
    margin-top: 35px;
    cursor: pointer;
}

