@import url(chota.min.css);
:root {
    /* --color-primary: #da1d50; /* brand color */
    /* --grid-maxWidth: 108rem; /* max container width 1080px */
}

/*html {*/
    /*background: #c3a57f url("/images/bg.jpg") repeat fixed center center;*/
    /*background-size: cover;*/
/*}*/

body {
    /*padding: 10px;*/
    background: transparent;
}

@media (orientation: portrait) {
    body {
        /*background-size: contain;*/
    }
}

#sport {
    position: fixed;
    z-index: 0;
    max-height: 80vh;
    filter: drop-shadow(-5px -5px 5px rgba(0, 0, 0, 0.4));
}

* {
    box-sizing: border-box;
    overflow: hidden;
}

.slide {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.slider-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: #fbffee;*/    
}

#tiltable-container {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    perspective: 15px;
}

#cover {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.7);
}

#description-container {
    padding: 10px;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

#title {
    font-size: 38px;
    font-weight: bold;
}

#description {
    z-index: 9999;
    font-family: "Playfair Display", "Didot", "Times New Roman", Times, serif;
    font-size:  32px;
    color:  #CCC;
}

#tiltable {
    z-index: -1;
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: #c3a57f url("/images/bg.jpg") repeat fixed center center;
    background-size: contain;
    /*transform: rotateY(15deg) scale(1.3);*/
    transition: transform 0.1s;    
}

.slider {
    height: 100%;
    width: 100%;
    /*box-shadow: 0 5px 10px #434547;*/
    
}


.fade1 {
    animation-name: fade1;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
}

.fade2 {
    animation-name: fade2;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
}

.fade3 {
    animation-name: fade3;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
}

.fade4 {
    animation-name: fade4;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
}

.fade5 {
    animation-name: fade5;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
}

@keyframes fade1 {
    0% {
        opacity: .4;
        transform: scale(1);
    }
    10% {
        opacity: .5;
        transform: scale(1.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade2 {
    0% {
        opacity: .4;
        transform: scale(1);
    }
    10% {
        opacity: .5;
        transform: scale(2.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade3 {
    0% {
        opacity: .4;
        transform: scale(1);
    }
    10% {
        opacity: .5;
        transform: scale(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade4 {
    0% {
        opacity: .4;
        transform: scale(1);
    }
    10% {
        opacity: .5;
        transform: scale(1.6);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade5 {
    0% {
        opacity: .4;
        transform: scale(1);
    }
    10% {
        opacity: .5;
        transform: scale(1.4);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}