body {
    margin: 0;
    background: linear-gradient(45deg, #fff8ae, white);
    background-repeat: no-repeat;
    font-family: "Montserrat", sans-serif;
}

h2 {
    padding-left: 25px;
    margin: 0;
}

h3 {
    margin-bottom: 0;
}

body a {
    margin: 0;
    height: fit-content;
    text-decoration: none;

}

.Curseur {
    padding-left: 20px;
    padding-top: 20px;
    position: relative;
    width: 0;
    margin: 0 auto;
    border-right: 2px solid rgb(0, 0, 0, 1);
    font-size: 30px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
}

.Typewriter-animation {
    animation:
        typewriter 3s steps(16) 1s 1 normal both,
        blinkingCursor 1000ms steps(16) infinite normal;
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 16ch;
    }
}

@keyframes blinkingCursor {
    from {
        border-right-color: rgb(0, 0, 0);
    }

    to {
        border-right-color: transparent;
    }
}

.Position {
    position: fixed;
    right: 100px;
    bottom: 0;
}

.Position img {
    width: 120px;
}

.Position button {
    background: none;
    border: none;
    cursor: pointer;
}

.Position p {
    max-width: 200px;
}

.Fiches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.Corps_Accueil {
    height: 81vh;
    display: flex;
    flex-direction: row;
}



.Quiz_Accueil_Container {
    display: flex;
    flex-direction: column;
    width: 30%;
}

.Quiz_Accueil {
    height: 25.5vh;

}

.Quiz_Accueil_Img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}

.Bloc {
    display: flex;
    flex-direction: column;
    border: 3px solid #8fcebf;
    margin: 20px;
    padding: 25px;
    background-color: white;
    border-radius: 25px;
    justify-content: space-between;
}

.Actualites_Accueil {
    width: 35%;
    height: 75%;
    overflow-y: scroll;
    display: block;
}

.Bloc a {
    color: white;
    text-decoration: none;
    background-color: #8fcebf;
    display: flex;
    padding: 15px;
    border-radius: 10px;
    justify-content: center;
}

.Categorie {
    display: flex;
    margin-bottom: 10px;
}

.Categorie p {
    background: linear-gradient(90deg, #fff585, #8fcebf);
    border-radius: 15px;
    margin: 5px;
    padding: 7px;
    font-size: small;
}

.Header {
    width: 100%;
    height: auto;
}

.Header h1 {
    margin: 0;
    padding-bottom: 30px;
}

.Onglets_Container {
    display: flex;
    justify-content: space-around;
}

.Onglets p {
    margin: 0;
    text-align: center;
    justify-self: center;
    align-items: center;
}

.Onglets {
    width: 100px;
    height: 50px;
    text-align: center;
    font-size: large;
    border: 2px solid #8fcebf;
    background: white;
    border-radius: 50px;
    color: rgb(8, 8, 8);
    padding: 0 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    transition: 0.8s;
    cursor: pointer;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Onglets:hover {
    background: linear-gradient(90deg, #f9f9cd, #8fcebf);
    transition: 0.8s;
}

.Fiche {
    display: flex;
    justify-content: center;
}

.Fiche img {
    padding: 50px 100px;
    background: floralwhite;
    border-radius: 10em;
    border: black 1px solid;
}

.Boutons {
    background-color: white;
    border: none;
    display: flex;
}

.Apparition_Fiche {
    display: none;
}

dialog {
    border: none;
    border-radius: 8px;
    padding: 20px;
    max-width: 90vh;
}

dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

dialog img {
    display: block;
    max-width: 100%;
    height: auto;
}

.Bouton_Fiche {
    cursor: pointer;
    border: none;
    color: white;
    text-decoration: none;
    background-color: #8fcebf;
    display: flex;
    padding: 15px;
    border-radius: 10px;
    justify-content: center;
    width: 100%;
    font-size: 1.1em;
    font-weight: 100;
    font-style: italic;
}

.Bouton_Telechargement {
    width: 25px;
    height: 25px;
    padding-top: 5px;
}