/* Réinitialisation de base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    
    /* Paramètres de l'image de fond */
    background-size: cover;          /* Force l'image à couvrir tout l'écran */
    background-position: center;     /* Centre l'image horizontalement et verticalement */
    background-repeat: no-repeat;    /* Évite la répétition */
    background-attachment: fixed;    /* Bloque le fond au défilement */
    
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

/* La boîte centrale (La "Bubble") */
.bubble {
    background: linear-gradient(to bottom, #ffffff 0%, #e6e6e6 100%);
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    padding: 25px 30px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.bubble h1 {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 15px;
}

.bubble h2 {
    font-size: 15px;
    font-weight: normal;
    color: #555555;
    line-height: 1.4;
}

/* Masquer le footer pour coller à la maquette d'origine */
footer {
    display: none;
}
