/* Réinitialisation générale */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styles pour la page de construction */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #1b1b2f;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Conteneur principal */
.construction-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Contenu de la construction */
.construction-content {
    max-width: 600px;
    padding: 30px;
    background-color: #162447;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 2s ease-in-out;
}

/* Titre */
.construction-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #e43f5a;
}

/* Texte */
.construction-text {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Animation de fondu */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
