@import url('https://fonts.googleapis.com/css?family=Lora&subset=cyrillic');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lora', serif;
}
.container{
    min-height: 100vh;
    background: #0f0500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.content{
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.animation-block{
    position: relative;
}

.animation-container-shadow{
    position: absolute;
    top: 8px;
    left: 32px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    box-shadow: 0 0 100px 0 rgba(255,199,0,0.75);
}

#animation {
    display: block;
    position: relative;
    height: 200px;
    width: 200px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.animation-img{
    background-image: url("./bw-logo.gif");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    height: 200px;
    width: 200px;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}
#back {
    position: absolute;
    top: 5%;
    left: -5%;
    height: 110%;
    width: 110%;
    transform-style: preserve-3d;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-transform: rotateX(60deg) rotateY(0deg) translateZ(30px);
    transform: rotateX(60deg) rotateY(0deg) translateZ(30px);
}
#back2 {
    position: absolute;
    top: -10%;
    left: -10%;
    height: 110%;
    width: 110%;
    transform-style: preserve-3d;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-transform: rotateX(60deg) rotateY(130deg) translateZ(30px);
    transform: rotateX(60deg) rotateY(130deg) translateZ(30px);
}
#back3 {
    position: absolute;
    top: 0;
    left: -10%;
    height: 110%;
    width: 110%;
    transform-style: preserve-3d;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-transform: rotateX(60deg) rotateY(40deg) translateZ(30px);
    transform: rotateX(60deg) rotateY(40deg) translateZ(30px);
}
.inimatebacke{
    width: 100%;
    height: 100%;
    border-top: 5px solid #ffe100;
    border-radius: 50%;
    -webkit-animation: cubeAnimation 1.1s infinite linear;
    animation: cubeAnimation 1.1s infinite linear;
}
.inimatebacke2{
    width: 100%;
    height: 100%;
    border-top: 5px solid #ff9a02;
    border-radius: 50%;
    -webkit-animation: cubeAnimation 1s infinite linear;
    animation: cubeAnimation 1s infinite linear;
}
.inimatebacke3{
    width: 100%;
    height: 100%;
    border-top: 5px solid #ffc700;
    border-radius: 50%;
    -webkit-animation: cubeAnimation 1.2s infinite linear;
    animation: cubeAnimation 1.2s infinite linear;
}
@-webkit-keyframes cubeAnimation {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes cubeAnimation {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.text{
    max-width: 560px;
    text-align: center;
    margin: 20px 10px 0 10px;
}

.text p{
    font-size: 20px;
    color: #af6400;
}

.text-hide {
    display: none;
}
