body {
    font-family: 'Nunito', sans-serif; /* Police plus légère */
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* Fond très clair */
    color: #4a4a4a; /* Couleur de texte plus douce */
    text-align: center;
    background-image: url('background.jpg'); /* Ajoutez votre image de fond */
    background-size: cover; /* Couvre toute la page */
    background-position: center;
    background-attachment: fixed; /* L'image reste fixe lors du défilement */
}

header {
    background-color: rgba(255, 255, 255, 0.8); /* Blanc semi-transparent */
    color: #333;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
}

section {
    padding: 20px;
    margin: 20px auto; /* Centrage horizontal */
    background-color: rgba(255, 255, 255, 0.7); /* Blanc semi-transparent */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 800px;
}

#annonce {
    background-color: rgba(240, 240, 240, 0.7); /* Gris très clair semi-transparent */
    font-size: 3em;
    text-align: center;
}

#inscription form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

#inscription input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

#inscription button[type="submit"] {
    background-color: #5cb85c;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#inscription button[type="submit"]:hover {
    background-color: #449d44;
}

footer {
    background-color: rgba(0, 0, 0, 0.5); /* Noir semi-transparent */
    color: #fff;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: underline;
}

