/* --- Réinitialisation et configuration de base --- */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* --- Style principal de la page --- */
body {
    background-color: #000000; /* Un noir profond mais pas pur, plus doux pour les yeux */
    color: #f0f0f0; /* Un blanc cassé pour le texte */
    font-family: 'Poppins', sans-serif; /* Police moderne, avec une alternative standard */
    
    /* C'est la magie ! On utilise Flexbox pour tout centrer parfaitement */
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center;    /* Centre verticalement */
    text-align: center;
}

/* --- Conteneur pour les éléments --- */
.container {
    max-width: 600px;
    padding: 2rem;
    
    /* Animation subtile à l'arrivée sur la page */
    animation: fadeIn 1.5s ease-in-out;
}

/* --- Style du logo --- */
.logo {
    max-width: 400px; /* Ajustez la taille max de votre logo */
    height: auto;
    margin-bottom: 2rem; /* Espace entre le logo et le titre */
}

/* --- Style des textes --- */
h1 {
    font-size: 2.5rem; /* Taille du titre principal */
    font-weight: 600; /* Police un peu plus grasse */
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

p {
    font-size: 1.1rem;
    font-weight: 300; /* Police plus fine pour le sous-titre */
    color: #a0a0a0; /* Couleur plus discrète */
    line-height: 1.6;
}

/* --- Définition de l'animation d'apparition --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* Le contenu monte légèrement */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}