.lds-grid {
    color: #4b2c7f
}

.lds-grid,
.lds-grid div {
    box-sizing: border-box;
}

.lds-grid {
    display: inline-block;
    position: relative;
    width: 120px;
    height: 120px;
}

.lds-grid div {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: currentColor;
    animation: lds-grid 1.2s linear infinite;
}

.lds-grid div:nth-child(1) {
    top: 8px;
    left: 8px;
    animation-delay: 0s;
}

.lds-grid div:nth-child(2) {
    top: 8px;
    left: 48px;
    animation-delay: -0.4s;
}

.lds-grid div:nth-child(3) {
    top: 8px;
    left: 88px;
    animation-delay: -0.8s;
}

.lds-grid div:nth-child(4) {
    top: 48px;
    left: 8px;
    animation-delay: -0.4s;
}

.lds-grid div:nth-child(5) {
    top: 48px;
    left: 48px;
    animation-delay: -0.8s;
}

.lds-grid div:nth-child(6) {
    top: 48px;
    left: 88px;
    animation-delay: -1.2s;
}

.lds-grid div:nth-child(7) {
    top: 88px;
    left: 8px;
    animation-delay: -0.8s;
}

.lds-grid div:nth-child(8) {
    top: 88px;
    left: 48px;
    animation-delay: -1.2s;
}

.lds-grid div:nth-child(9) {
    top: 88px;
    left: 88px;
    animation-delay: -1.6s;
}

@keyframes lds-grid {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Styles généraux */
body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    /* Police plus agréable pour les enfants */
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* En-tête */
header {
    background-color: #4b2c7f;
    /* Couleur en rapport avec Harry Potter */
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin: 0;
    text-align: center;
}

/* Conteneur principal */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Formulaire */
form {
    margin-bottom: 20px;
    text-align: center;
    /* Centrer le contenu du formulaire */
}

.main {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    /* Espacement entre les sélections */
}

/* Sélection */
p {
    flex: 1 1 calc(30% - 15px);
    /* Trois sélections par ligne avec espacement */
    min-width: 200px;
}

/* Bouton de soumission */
input[type="submit"] {
    background-color: #4b2c7f;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s;
    display: block;
    /* S'assurer qu'il est traité comme un bloc */
    margin: 0 auto;
    /* Centrer le bouton */
}

input[type="submit"]:hover {
    background-color: #3c235f;
}

/* Loader */
.lds-grid {
    display: none;
    margin: 20px auto;
}

/* Zone d'affichage de l'histoire */
#story {
    margin-top: 20px;
    padding: 20px;
    background: #e8e8e8;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    line-height: 1.5;
    display: none;
}

/* Pied de page */
footer {
    text-align: center;
    padding: 20px;
    background-color: #4b2c7f;
    color: #fff;
    position: relative;
    bottom: 0;
    width: 100%;
}

a {
    color: #4b2c7f;
    text-decoration: none;
}

a:visited {
    color: #4b2c7f;
}

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 7rem;
    }

    .container {
        margin: 0;
        /* Pas de marge sur mobile */
        padding: 10px;
        /* Padding plus léger */
    }

    .main {
        flex-direction: column;
        /* Empiler les sélections sur petits écrans */
    }

    p {
        flex: 1 1 100%;
        /* Prendre toute la largeur sur mobiles */
    }

    select {
        font-size: 2em;
    }

    input[type="submit"] {
        width: 100%;
        padding-top: 5%;
        padding-bottom: 5%;
        font-size: 4rem;
        font-weight: bold;
    }

    #story {
        font-size: 4rem;
    }

    .lds-grid {
        top: 2em;
        width: 312px;
        height: 312px;
    }

    .lds-grid div {
        width: 96px;
        height: 96px;
    }

    .lds-grid div:nth-child(1) {
        top: 8px;
        left: 8px;
    }

    .lds-grid div:nth-child(2) {
        top: 8px;
        left: 112px;
    }

    .lds-grid div:nth-child(3) {
        top: 8px;
        left: 216px;
    }

    .lds-grid div:nth-child(4) {
        top: 112px;
        left: 8px;
    }

    .lds-grid div:nth-child(5) {
        top: 112px;
        left: 112px;
    }

    .lds-grid div:nth-child(6) {
        top: 112px;
        left: 216px;
    }

    .lds-grid div:nth-child(7) {
        top: 216px;
        left: 8px;
    }

    .lds-grid div:nth-child(8) {
        top: 216px;
        left: 112px;
    }

    .lds-grid div:nth-child(9) {
        top: 216px;
        left: 216px;
    }
}

/* Styles pour les écrans plus larges */
@media (min-width: 769px) {
    .container {
        margin: 20px auto;
        /* Marges sur les côtés pour ordinateur */
    }
}