/**{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 45vh;
    background: #000;
}*/
.box{
    position: relative;
    width: 200px;
    height: 200px;
    margin-left:auto;
    margin-right:auto;
    transform-style: preserve-3d;
    animation: animate 20s linear infinite;

}
.box:hover{
    animation-play-state: paused;
    cursor: pointer;
}
@keyframes animate{
    0%{
        transform: perspective(1000px) rotateY(0deg);
    }
    100%{
        transform: perspective(1000px) rotateY(360deg);
    }

}
.box span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i)*45deg))translateZ(300px);
    -webkit-box-reflect: below 0px linear-gradient(transparent,transparent,#0004);

}
.box span img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
    transition: all 300ms;
}
.box span img:hover{
    transform: scale(1.6);
    transition: all 300ms;
    object-fit: inherit;
}
.iframe-container{
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    object-fit: cove;
}
.iframe-container iframe{
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
    height: 100%;
}
.iframe-container iframe:hover{
    transform: scale(1.6);
    transition: all 300ms;
}


   
