body{
    background-image: url('/assets/background.png');
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center center;
}
/* Barre de navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 42, 85, 0.9); /* Bleu pro transparent */
    padding: 0.8rem 1.5rem;
    color: white;
    font-family: sans-serif;
}

.navbar-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.navbar-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.navbar-links li a:hover {
    text-decoration: underline;
}
