*{
    color: white;
}

a{
    text-decoration: none;
}


div>img {
    width: 90vw;
    margin-bottom: 10vh;
    display: block;
    margin: auto;
}


#mentionsLegales {
    font-size: 12px;
    width: 100vw;
    position: absolute;
    bottom: 4vh;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    font-family: 'Roboto',sans-serif;
}

#politiqueConfidentialite {
    font-size: 12px;
    width: 100vw;
    position: absolute;
    bottom: 8vh;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    font-family: 'Roboto',sans-serif;
}

button:not(.non), .btn2>button{
    display: block;
    background: linear-gradient(55.52deg, #030000 -23.81%, #920003 78%);
    border: none;
    font-family: 'Roboto',sans-serif;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    margin: auto;
    margin-bottom: 20px;
    padding: 2vh 3vh;  
    letter-spacing: 2px;    
}

body{
    background-image: url(assets/fond/fond.webp);
    background-size: cover;
    margin: 0;
    padding: 0;
    animation: fadeIn 2s;
}

.home{
    padding-top: 15vh;
}


/*TUTO*/
#tuto {
    margin: 5vh 10vw 0 10vw;
    font-family: 'roboto';
}

#btnTuto {
    margin: 5vh auto;
}

#titreTuto {
    margin: 25vh 10vw 0 10vw;
}

.end {
    text-align: center;
    margin: 25vh 10vw 15vh 10vw;
    font-family: 'roboto';
}

@media only screen  and (max-width: 849px) and (orientation: portrait){
    #nope {
        display: none;
    }
}

@media only screen and (min-width: 850px) {
    body *:not(:first-child) {
        display: none;
    }

    * {
        background-image: url(assets/fond/fond.webp);
        background-size: cover;
    }

    #nope {
        display: block;
        text-align: center;
        margin: auto;
    }

    audio {
        display: none;
    }
}

@media only screen and (orientation: landscape) {
    body *:not(:first-child){
        display: none;
    }

    * {
        background-image: url(assets/fond/fond.webp);
        background-size: cover;
    }

    #nope {
        display: block;
        text-align: center;
        margin: auto;
    }

    audio {
        display: none;
    }
}

/** ANIMATION **/

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}