body {
    margin: 0;
    text-align: center;
    font-family: sans-serif;
    background: url("./images/backgrounds/bg-kuhnja-list.jpg") repeat content-box;
}

article {
    position: relative;
    min-height: 80vh;
    height: auto;
    margin-bottom: 10px;
}
.title-kuhni {
    margin: 0;
    color: white;
    padding: 0 0 0 30px;
    font-size: 60px;
    font-style: italic;
    text-shadow: 4px 3px 0 #7A7A7A;
    text-shadow: 2px 0 0px #800040, 3px 2px 0px rgba(77,0,38,0.5), 3px 0 3px #FF002B, 5px 0 3px #4f0228, 6px 2px 3px rgba(77,0,13,0.5), 6px 0 9px #c14080, 8px 0 9px #810040, 9px 2px 9px rgba(77,25,0,0.5), 9px 0 18px #FFD500, 11px 0 18px #f5f4ee, 12px 2px 18px rgba(77,66,0,0.5), 12px 0 30px #f8f8f5, 14px 0 30px #f7f8f4, 15px 2px 30px rgb(244, 245, 238), 15px 0 45px #f8fcf4, 17px 0 45px #f1f3eff3, 17px 2px 45px rgb(250, 252, 249);
}
.container {
    position: relative;
    width: 320px;
    height: 0px;
    margin: 20px auto 0 auto;
    perspective: 800px;
   
}

.carousel {
    position: absolute;
    color: white;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate360 50s infinite forwards linear;
}

.carousel a {
    text-decoration: none;
    color: white;
 
}

.carousel__face {
    position: absolute;
    width: 300px;
    height: 187px;
    top: 20px;
    left: 10px;
    right: 10px;
    background-size: cover;
    box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.5);
    display: flex;
}

span {
    margin: auto;
    font-size: 2rem;
}


.carousel__face:nth-child(1) {
    background-image: url("./images/main/italianskaya_kuhnya.jpg");
    transform: rotateY( 0deg) translateZ(320px);
}

.carousel__face:nth-child(2) {
    background-image: url("./images/main/amerikanskaya_kuhnya.jpg");
    transform: rotateY( 51deg) translateZ(320px);
}

.carousel__face:nth-child(3) {
    background-image: url("./images/main/kavkazskaya_kuhnya.jpg");
    transform: rotateY( 103deg) translateZ(320px);
}

.carousel__face:nth-child(4) {
    background-image: url("./images/main/panasiatskaya_kuhnya.jpg");
    transform: rotateY(154deg) translateZ(320px);
}

.carousel__face:nth-child(5) {
    background-image: url("./images/main/zdorovoe_pitanie.jpg");
    transform: rotateY(206deg) translateZ(320px);
}

.carousel__face:nth-child(6) {
    background-image: url("./images/main/junye_povara.jpg");
    transform: rotateY(257deg) translateZ(320px);
}

.carousel__face:nth-child(7) {
    background-image: url("./images/main/poleznye_napitki.jpg");
    transform: rotateY(309deg) translateZ(320px);
}



@keyframes rotate360 {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(-360deg);
    }
}

/*-------------------*/
header {
    width: 100%;
    padding: 20px 0;
    position: relative;
 }
 