/* Image de fond en arrière-plan */
body{
    background-image: url(Img/Fond.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Boîte contenant le texte, avec un fond semi-transparent */
.contenu {
    background-color: rgba(255, 255, 255, 0.65); /* blanc à 85% */
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    color: #333;
}

h1 {
    color: #1a3a6b;
    text-align: center;
    border-bottom: 2px solid #1a3a6b;
    padding-bottom: 10px;
}

img {
    width: 240px;
    height: 180px;
    object-fit: cover;
    margin: 10px;
    border-radius: 8px;
}

p {
    line-height: 1.6;
    text-align: justify;
    margin: 20px 0;
}

a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #1a3a6b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

a:hover {
    background-color: #2a5aa0;
}
