#accueil, #films, #series, #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;
}

#photo-profil {
    height:100px;
    width: 100px;
    border-radius: 50%;
}

#nomUtilisateur {
    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-bottom: 0;
}

#deconnexion {
    margin-top: 5vh;
    background-color: black;
    color: #DD31FF;
    border: none;
}

#deconnexion:hover {
    cursor: pointer;
    text-decoration: underline;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 0; padding-bottom: 5vh;
}

#banner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 90%; height: 30vh;
    margin-top: 10%;
    background-color: #151515;
}

#photo-et-titre {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#suivre {
    position: absolute;
    right: 6%; top: 20vh;
    background-color: #151515;
    border: none;
}

#suivre:hover {
    cursor: pointer;
}

#stats {
    margin-top: 5vh;
    background-color: #151515;
    display: flex;
    align-items: center; justify-content: space-evenly;
    width: 90%; height: 12vh;
    color: #DD31FF;
}

#nbre-critiques, #suivis {
    border-right: #ffffff solid 1px;
    height: 10vh; width: 33%;
    display: flex; 
    flex-direction: column;
    justify-content: center; align-items: center;
}

#nbre-critiques h1, #nbre-critiques p, #suivis h1, #suivis p, #suivent h1, #suivent p {
    margin: 0; padding: 0;
}

#suivent {
    height: 10vh; width: 33%;
    display: flex; 
    justify-content: center; align-items: center;
    flex-direction: column;
}

#critiques {
    background-color: #151515;
    width: 90%; min-height: 60vh;
    height: fit-content;
    margin-top: 5vh;
    padding-bottom: 5vh;
}

#critiques h2 {
    color: #DD31FF;
    margin-left: 5%;
}

#conteneur-critiques {
    border: #DD31FF solid 1px;
    width: 40%; height: fit-content;
    margin-left: 5%; margin-top: 2%;
    background-color: #151515;

}

#conteneur-critiques:hover {
    cursor: pointer;
}

#conteneur-critiques img {
    width: 32.7%;
}

#popup {
    display: none;
    flex-direction: column;
    position: fixed;
    border: #DD31FF solid 1px;
    height: 80vh; width: 80%;
    background-color: #151515;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1001;
    overflow-y: scroll;
    align-items: center;
    padding-top: 2.5%;
}

#close-popup {
    color: #DD31FF;
    background-color: #151515;
    height: 30px; width: 30px;
    top: 0; left: 0;
    border: none;
    position: absolute;
}

#close-popup:hover {
    cursor: pointer;
}

#popup img {
    width: 25%;
    padding-top: 0;
    margin-left: 10%;

}

#une-critique {
    display: flex;
    width: 90%;
    border-top: #ffffff solid 1px;
    padding: 2.5%;
}

#titre-et-contenu {
    margin-left: 10%; margin-top: 5%;
    height: 80%; width: 50%;
}

#titre-et-contenu h1 {
    color: #DD31FF;
}

#titre-et-contenu p {
    color: #ffffff;
}



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