body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

#menu-container {
    display: none; /* Hide by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#menu-container.active {
    display: flex; /* Show when active  */
}

#menu {
    background-color: #FFFFFF;
    padding: 20px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
}

h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.buttons {
    margin-bottom: 20px;
}

button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px 20px;
    border: none;
    background-color:#4AEDED;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #000000;
}

.close-button {
    background-color: #ff0019;
}

.close-button:hover {
    background-color: #000000;
}