@import "header.css";
@import "footer.css";

body, html {
    font-family: Arial, sans-serif;
    background-color: #E3EBFC;
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content {
    max-width: 800px;
    margin: 60px auto 0; /* Ajoutez 60px pour la hauteur du header */
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 100px;
}

h1 {
    margin-top: 2em;
    margin-bottom: 2em;
    text-align: center;
}

h2{
    margin-top: 50px;
}
.content p {
    margin-bottom: 10px;
}