.menu {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background: #222;
    padding: 15px;
    display: flex;
    gap: 25px;
    justify-content: center;
    top: 0;
    width: 100%;
    z-index: 999;
    
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}

.menu a:hover {
    color: #004d80;
}

.menu a.active {
    color: #0099ff;
}