/* body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
} */

#pass {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

#pass form {
    display: inline-block;
    margin-top: 50px;
}

#pass input[type="password"] {
    padding: 10px 20px;
    border: none;
    border-radius: 20px; /* Bordures arrondies */
    outline: 1px;
    font-size: 16px;
    background-color: #ffffff; /* Couleur d'arrière-plan du champ de mot de passe */
    color: #333333; /* Couleur du texte */
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1); /* Ombre pour donner un aspect "flottant" */
    transition: all 0.3s ease; /* Animation de transition pour le focus */
    margin-right: 10px;
}

#pass input[type="password"]:focus {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15); /* Ombre plus prononcée lors du focus */
}

#pass input[type="submit"] {
    padding: 10px 20px;
    border: none;
    border-radius: 20px; /* Bordures arrondies */
    outline: none;
    font-size: 16px;
    background-color: #007BFF; /* Couleur d'arrière-plan du bouton */
    color: #ffffff; /* Couleur du texte du bouton */
    cursor: pointer; /* Change le curseur lors du survol du bouton */
    box-shadow: 2px 10px 15px rgba(0, 0, 0, 0.1); /* Ombre pour donner un aspect "flottant" */
    transition: all 0.3s ease; /* Animation de transition pour le survol et le focus */
}

#pass input[type="submit"]:hover,
#pass input[type="submit"]:focus {
    background-color: #0056b3; /* Couleur d'arrière-plan du bouton lors du survol et du focus */
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15); /* Ombre plus prononcée lors du survol et du focus */
}



body {
    font-family: sans-serif;
    font-size: 14px;
    background-image: url('img.png');
    background-repeat: no-repeat;
    background-size: 800px;
    background-position: bottom right;
    background-attachment: fixed;
    margin-top: 0px;
    background-color: #a1d4dc;
}


h2 {
    font-family: Times, Times New Roman, serif;
    text-align: center;
    font-size: 50px;
}

h2 a {
    text-decoration: none; /* Supprime le soulignement des liens */
    color: #744f9c; /* Utilise la couleur par défaut du texte */
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
li {
    display: inline-block;
    margin: 0 10px 10px 0;
}
img {
    border: none;
    box-shadow: 0 0 10px rgb(35, 35, 35);
}

.link {
    text-align: center; /* Centre le texte */
}


.dirlist {
    position: fixed;
    top: 18px;
    right: 0;
    background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(191,191,191,0.5046393557422969) 15%, rgba(191,191,191,0.4990371148459384) 85%, rgba(255,255,255,0) 100%);      
    height: 160px;
    overflow-y: hidden; /* Supprime la barre de défilement */
    text-align: center; /* Centre le texte */
    text-decoration: none;
    padding-left: 10px;
    padding-right: 10px;
}

.dirlist * {
    font-size: 30px; /* Augmente la taille du texte */
}

.dirlist li {
    display: block;
    margin: 0 0 10px 0;
}
.dirlist a {
    text-decoration: none;
}
.dirlist a.current {
    background: rgba(255, 255, 255, 0.8);
    display: inline-block;
    width: 100%;
}
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.8);
    z-index: 1000;
    display: none;
}
#lightbox .content {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    text-align: center;
}
#lightbox img {
    max-width: 100%;
    max-height: 100%;
}
#lightbox .content i {
    position: fixed;
    top: 50%;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.5);
    text-align: center;
    line-height: 40px;
    font-size: 30px;
    color: #000;
    cursor: pointer;
}
#lightbox .content i.lt {
    left: 0;
}
#lightbox .content i.gt {
    right: 0;
}
#lightbox .content a {
    display: block;
    text-align: center;
    margin-top: 10px;
}

/* Responsive */

@media (max-width: 600px) {
    .dirlist {
        display: none;
    }
}