#accueil, #authentification {
    color: #ffffff;
    padding: 15px;
    text-decoration: none;
    background-color: #151515;
    margin: 5px;

    -moz-border-radius-topleft: 50px;
    -moz-border-radius-topright:50px;
    -moz-border-radius-bottomleft:50px;
    -moz-border-radius-bottomright:50px;
    -webkit-border-top-left-radius:50px;
    -webkit-border-top-right-radius:50px;
    -webkit-border-bottom-left-radius:50px;
    -webkit-border-bottom-right-radius:50px;
    border-top-left-radius:50px;
    border-top-right-radius:50px;
    border-bottom-left-radius:50px;
    border-bottom-right-radius:50px;
}

@media screen and (max-width: 680px) { /* affichage téléphone */
    #main {
        padding-top: 30%; margin-bottom: 30%;
    }

    #div-films, #filtres {
        display: flex;
        flex-direction: column;
        margin-left: 5%; margin-right: 5%;
        background-color: #151515;
    }

    #filtres {
        margin-bottom: 5vh;
        display: flex;
        flex-direction: column;
        height: 15vh;
        overflow-y: hidden;
    }

    #filtres-inter {
        height: 10vh;
        display: flex;
        align-items: center;
        overflow-x: scroll;
        margin-left: 5vh;
    }

    #filtres h2 {
        background: linear-gradient(119deg, rgba(70,0,75,1) 0%, rgba(133,21,160,1) 41%, rgba(85,0,255,1) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        margin-left: 5vh;
    }

    #filtre-horreur, #filtre-drame, #filtre-aventure, #filtre-fantastique, #filtre-action, #filtre-western {
        margin-left: 0; margin-right: 3vh;
    }

    #lien-film {
        text-decoration: none;
    }

    #un-film {
        margin-top: 5vh; margin-bottom: 5vh;
        margin-left: 5vh; margin-right: 5vh;
        box-shadow: 5px 5px 5px 5px black;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    #affiche {
        height: 45vh;
        width: 100%;
    }

    #infos-film {
        margin-left: 2vh; margin-right: 2vh;
        color: #ffffff;
    }

    #titre-film {
        font-size:larger;
        overflow: hidden;
    }

    #realisateur-film, #acteurs-film, #genre-film, #note-film {
        display: none;
    }

    #infos-film h1 {
        background: linear-gradient(119deg, rgba(70,0,75,1) 0%, rgba(133,21,160,1) 41%, rgba(85,0,255,1) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
    }
}

@media screen and (min-width: 681px) { /* affichage ordinateur */
    #main {
        margin-top: 10%; margin-bottom: 10%;
    }
    
    #div-films, #filtres {
        display: flex;
        flex-direction: column;
        margin-left: 10vh; margin-right: 10vh;
        background-color: #151515;
    }
    
    #filtres {
        margin-bottom: 5vh;
        display: flex;
        flex-direction: row;
        height: 10vh;
    }
    
    #filtres-inter {
        height: 10vh;
        display: flex;
        align-items: center;
    }
    
    #filtre-horreur:hover, #filtre-drame:hover, #filtre-aventure:hover, #filtre-fantastique:hover, #filtre-action:hover, #filtre-western:hover {
        cursor: pointer;
        border: #ffffff solid 1px;
    }
    
    #filtres h2 {
        background: linear-gradient(119deg, rgba(70,0,75,1) 0%, rgba(133,21,160,1) 41%, rgba(85,0,255,1) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        margin-left: 5vh;
    }
    
    #lien-film {
        text-decoration: none;
    }
    
    #un-film {
        margin-top: 5vh; margin-bottom: 5vh;
        margin-left: 20vh; margin-right: 20vh;
        box-shadow: 5px 5px 5px 5px #000000;
        display: flex;
    }
    
    #un-film:hover {
        box-shadow: 7px 7px 7px 7px #000000;
    }
    
    #affiche {
        height: 400px;
        width: 290px;
    }
    
    #infos-film {
        margin-left: 10vh; margin-right: 10vh;
        width: 50%;
    }
    
    #infos-film p {
        color: #ffffff;
    }
    
    #infos-film h1 {
        background: linear-gradient(119deg, rgba(70,0,75,1) 0%, rgba(133,21,160,1) 41%, rgba(85,0,255,1) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
    }
}