/* Style global du site */
body {
    background-color: #401e21;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: white;
}

header {
    background-color: #2e4d6f;
    padding: 20px;
    color: white;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid black;
    padding: 10px;
    background-color: #4f6a87;
}

header h1 {
    text-transform: uppercase;
    font-weight: bold;
    margin: 0;
}

/* Bannière clignotante */
.top-banner {
    background-color: #7a0c16;
    padding: 10px;
    text-align: center;
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.quote-button {
    color: white;
    background-color: #7a0c16;
    padding: 10px 20px;
    font-weight: bold;
    border: 2px solid white;
    text-decoration: none;
    text-transform: uppercase;
}

/* Image principale */
.main-image {
    width: 100%;
    height: auto;
}

/* Style du contenu central */
main {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.content {
    width: 800px;
    padding: 20px;
    background-color: white;
    border: 2px solid black;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    color: black;
}

/* Footer */
footer {
    background-color: #401e21;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-content {
    padding: 10px;
}

.footer-content p {
    margin: 5px 0;
}

/* Adaptation pour écrans plus petits */
@media only screen and (max-width: 800px) {
    .content {
        width: 90%;
    }
}