/* Pop-Up Styles */
.popup {
    display: none; /* Hidden by default */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Dark semi-transparent background */
    z-index: 1000; /* Makes sure the pop-up is on top */
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}

.popup-content {
    background-color: #000; /* Black background for the pop-up content */
    color: #fff; /* White text color for better readability */
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    box-sizing: border-box; /* Include padding in width calculation */
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: #fff; /* Ensure visibility on hover */
    text-decoration: none;
}


body{
	background-image:url(img/MEEM.jpg);
	background-repeat:no-repeat;
        background-attachment:fixed;
        background-position:center; 
	background-color:#ffffff;
	}
	
	
#audio-controls {
    margin-top: 20px;
    text-align: center;
}

#audio-controls button {
    background-color: #1e90ff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 5px;
}

#audio-controls button:hover {
    background-color: #0056b3;
}	