/* Menu bar styling */
.menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    padding: 5px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.menu a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Positioning the audio player at the bottom right */
.audio-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 10px;
}

/* Positioning text at the bottom left */
.bottom-left-text {
    position: fixed;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 1x;
    font-family: Arial, sans-serif;
    z-index: 2;
}