.menu {
    display: flex;
    padding:0;
    background-color: #091428;
    justify-content: space-around;
    gap: 18px;
}

.menu li {
    list-style-type: none ;
}

.menu a {
    display:block;
    text-align: center;
    background-color: #010A13;
    color: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 4px;
    transition: all 0.5s ;
    font-size: 20px;
    padding: 8px;
}

.menu a.actif {
    background-color: #005A82 ;
    color: white ;
    border-color: white ;
}

.menu a:hover,
.menu a:hover.actif{
    background-color: #C89B3C;
    color: white;
    border-color: white;
}

#logo {
    margin-right: 15px;
    margin-left: -25px;
    width: 6%;
    height: 6%;
}