body, html {
    height: 100%;
    margin: 0;
}
body {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
}
.content {
    flex: 1;
}
.contact-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.contact-form h2 {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    margin-bottom: 5px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.contact-form button {
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.contact-form button:hover {
    background: #0056b3;
}
        .background-section {

            background-image: url("../img/landscape-308706_1920.png");
            background-size: cover; /* Ajuste la taille de l'image pour couvrir la section */
            background-repeat: no-repeat;
            background-position: center; /* Centre l'image de fond */
            /* Autres propriétés de style pour la section */
            width: 100%;
            height: 100vh; /* Utilisation de la hauteur de la fenêtre du navigateur */
            position: absolute; /* Place l'arrière-plan en position absolue */
            z-index: -1; /* Met l'arrière-plan en arrière-plan par rapport aux autres éléments */
        }

        footer {

          background-color: #171717;
        }
