.maintenance {
    /* A switch pour la maintenance */
    display: none;
    /* display: flex; */

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: radial-gradient(rgba(255, 255, 255, 0.3), rgba(14, 1, 20, 0.3)80%,rgba(0, 0, 0, 0.5)) ,rgb(71, 71, 71);
}
.maintenance p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 40px 40px;
    border-radius: 7px;
    color: white;
    font-size: 2em;
    text-align: center;
    z-index: 1000;
}

.index_form {
    /* A switch pour la maintenance */
    display: flex;
    /* display: none; */

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: radial-gradient(rgba(255, 255, 255, 0.3), rgba(14, 1, 20, 0.3)80%,rgba(0, 0, 0, 0.5)) ,rgb(71, 71, 71);
}
.index_form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 40px 40px;
    border-radius: 7px;
    text-align: center;
    gap: 15px;
    z-index: 1000;
}
.index_form form > * {
    font-size: 1.6em;
}
.index_form form label {
    color: white;
    text-transform: uppercase;
}
.index_form form input[type='text'] {
    color: white;
    outline: none;
    background-color: transparent;
    border: none;
    border-bottom: 1px white solid;
    margin-bottom: 10px;
    padding: 5px;
}
.lien {
    display: block;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border: 2px solid #C6B775;
    color: #C6B775;
    text-decoration: none;
    font-size: 1.2em;
    cursor: pointer;
}
.lien:hover {
    background: linear-gradient(rgba(24, 7, 44, 0.2),rgba(0, 0, 0, 0.2));
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.03);
    transition: all .1s linear;
}

.video_ecran {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    mix-blend-mode: screen; 
    opacity: 7%;
    z-index: 100;
}

/* ENIGME */
.enigme {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}
.enigme p {
    display: block;
    font-family: "Eagle Lake", serif;
    font-size: 1.2em;
    font-weight: 400;
    font-style: normal;
    color: #c6b77515;
    text-align: center;
}
.enigme p span {
    color: #c6b77533;
}
#texte1 {
    font-size: 1.8em;
    animation: clignotte 5s ease-in-out 0s infinite both;
}
#texte2 {
    font-size: 1.4em;
    transform: translate(-10%, -60%);
    animation: clignotte 6s ease-in-out 1s infinite both;
}
#texte3 {
    font-size: 1.5em;
    transform: translate(20%, -120%);
    animation: clignotte 5s ease-in-out 0s infinite both;
}
#texte4 {
    font-size: 1.7em;
    transform: translate(-10%, 100%);
    animation: clignotte 7s ease-in-out 2s infinite both;
}
#texte5 {
    font-size: 1.3em;
    transform: translate(35%, 50%);
    animation: clignotte 6s ease-in-out 3s infinite both;
}
#texte6 {
    font-size: 1.6em;
    animation: clignotte 5s ease-in-out 0s infinite both;
}

@keyframes clignotte {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}