/* Réinitialisation des marges et des rembourrages par défaut */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Styles de base */
body {
    font-family: Arial, sans-serif;
    background-image: url('fond.avif'); /* Remplacez 'votre-image.jpg' par le chemin de votre image */
    background-size:cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Fixe l'image en arrière-plan */
    color: #333;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
    padding: 20px;
    filter: blur();
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-size: 2em;
}

section {
    background-color: rgba(255, 255, 255, 0.8); /* Fond légèrement transparent */
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Styles pour le formulaire */
form {
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

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

/* Styles pour le pied de page */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
