body {
    background-color: #363636;
}

.container {
    height: 100vh;
    width: 100%;
    position: relative;
}

img#logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70%;
    max-height: 100%;
}

/* ====== MENU FIXE EN HAUT ====== */
.top-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f0f0f0; /* gris clair */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.top-menu a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

.top-menu a:hover {
    text-decoration: underline;
}

/* Ajuster le reste du site pour ne pas être caché par le menu */
body {
    margin: 0;
    padding-top: 50px; /* espace pour le menu fixe */
}

/* ====== BANDEAU FIXE EN BAS ====== */
.bottom-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f0f0f0; /* même gris que le menu */
    color: #333;
    text-align: center;
    font-size: 0.9rem;
    padding: 8px 0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Ajuste le contenu pour qu'il ne soit pas masqué par le bandeau */
body {
    margin: 0;
    padding-top: 50px; /* espace pour le menu fixe */
    padding-bottom: 40px; /* espace pour le bandeau bas */
}

