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

body {
    font-family: Verdana, sans-serif;
    background-color: #000; /* Fond noir */
    color: #fff; /* Texte en blanc pour le contraste */
    line-height: 1.5;
}

/* Conteneur principal */
.container {
    padding: 0.25em;
	justify-content: center;
	text-align: center;
}

/* Conteneur principal */
.image-container {
    padding: 1em;
	justify-content: center;
}

/* Titres */
h1 {
    margin-bottom: 1em;
}

h1 {
    font-size: 2em;
}

/* Paragraphes */
p {
    margin-bottom: 2em;
}