/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-image: url('/assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #333;
    padding: 20px;
    min-height: 100vh;  /* Assure que le fond couvre toute la hauteur */
}

header {
    background-color: rgba(53, 66, 74, 0.8);  /* Fond semi-transparent */
    color: white;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9);  /* Fond blanc semi-transparent */
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: rgba(53, 66, 74, 0.8);
    color: white;
}