* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Inclut le padding et la bordure dans la largeur et la hauteur */
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    background-color: lightpink;
    width: 100%; /* Prend toute la largeur de la fenêtre */
    height: 100vh; /* Prend toute la hauteur de la fenêtre */
}

header {
    text-align: center;
    padding: 20px 0;
    background-color: #fce4ec; /* Light background for header */
    width: 100%; /* Assure que l'en-tête prend toute la largeur */
}

h1 {
    font-weight: bolder;
    text-decoration: underline;
    text-transform: uppercase;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 2.5em;
    margin: 0;
}

nav {
    margin-top: 10px;
}

#menu {
    background-color: purple;
    list-style-type: none;
    padding: 0;
    width: 100%; /* Assure que le menu prend toute la largeur */
}

#menu li {
    display: inline;
    margin: 0 15px;
}

#menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

#menu a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
    width: 100%; /* Assure que le main prend toute la largeur */
}

section {
    margin-bottom: 40px; /* Space between sections */
}

h2 {
    font-size: 2em;
    color: darkslategray;
    margin-bottom: 10px;
}

#paragraphe1,
#paragraphe2 {
    line-height: 1.5em; 
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
    width: 100%; /* Assure que les paragraphes prennent toute la largeur */
}

#paragraphe1 {
    background-color: yellow;
    background-image: url(craft.jpg);
    background-attachment: fixed;
    text-align: right;
}

#paragraphe2 {
    background-color: blue;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #fce4ec; /* Light background for footer */
    width: 100%; /* Assure que le footer prend toute la largeur */
}

.img-footer {
    width: 150px;
    height: auto;
    margin-bottom: 10px;
}
