/* -----CSS----- */

/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%; /* important pour calculer la hauteur */
    margin: 0;
    display: flex;
    flex-direction: column;
}



body {
    background-image: url('../IMG/BG1.png'); /* 🔁 remplace le chemin si nécessaire */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-color: #0e0c2c; /* fallback au cas où l'image ne se charge pas */
    color: white; /* si ton texte est sombre */
}


/* -----MEDIA----- */
