/* Reset minimal du navigateur */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    background-color: #111111; /* Fond noir */
    color: #ffffff; /* Texte blanc */
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.8em;
}

.centered-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 640px;
}

.logo {
    max-width: 160px; /* Ajustez selon la taille de votre logo */
    margin-bottom: 40px;
}

h1 {
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
    text-transform: uppercase;
}
