body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

h1 {
    color: #333;
}

p {
    color: #666;
}

.banner {
    color: white;
    padding: 10px;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}

.banner h1 {
    margin: 0;
    font-size: 24px;
}

.banner-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner img {
    width: auto;
    height: auto;
    max-width: 100%; /* Permet de s'assurer que l'image ne dépasse pas la largeur du conteneur */
}

.banner-text {
    position: absolute; /* Position absolue pour superposer sur l'image */
    color: lightyellow; /* Jaune pâle */
    font-size: 60px; /* Taille assez grosse */
    font-weight: bold; /* Gras pour mieux se démarquer */
    text-align: center; /* Centrage du texte */
    width: 100%; /* Prend toute la largeur du conteneur parent */
}
