.menu {
    background-color: rgba(0, 0, 0, 0.7); 
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%; 
    z-index: 999; 
}

.menu-container {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 35%; 
    margin: 0 auto; 
}

.title {
    color: white;
    font-family: Arial, sans-serif;
    font-size: 25px;
    text-align: center;
    margin: 0;
}

.nav-btn {
    text-decoration: none; 
    color: rgb(173, 173, 173); 
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 15px;
    background-color: transparent;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-btn:hover {
    color: black;
    background-color: yellow;
}