* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Jost', sans-serif;
    overflow: hidden; /* Prevents scrollbars caused by the video background */
    font-weight: bold;

}

body {
    position: relative; /* Position relative to ensure proper layering */
    color: #fff;
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
    text-align: center;
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire background */
    z-index: -1; /* Places the video behind all other content */
}

.menu-container {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    max-width: 600px; /* Limits the width to avoid stretching */
    width: 100%;
    position: relative; /* Ensures the container stays on top of the video */
    z-index: 1;
}

h1 {
    /* font-size: 4em;
    margin-bottom: 20px;
    color: #23baf5; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Roboto Condensed', sans-serif; 
    animation: colorChange 5s linear infinite; Smooth color transition */

   
    font-family: 'Honk';
    margin-bottom: 20px;
    font-size: 100px;
    /* font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
    "MORF" 15,
    "SHLN" 50; */
    
}

/* Keyframes for color animation */
@keyframes colorChange {
    0% { color: #23baf5; } /* Blue */
    25% { color: #f5a623; } /* Orange */
    50% { color: #23f577; } /* Teal */
    75% { color: #ff6b6b; } /* Red */
    100% { color: #23baf5; } /* Back to Blue */
}

.button-container {
    font-family: "Bungee", sans-serif;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center; /* Center align buttons horizontally */
}

.button {
    min-width: 200px;
    border-radius: 16px;
    border: 2px solid #e5e5e5;
    border-bottom: 6px solid #e5e5e5;
    background-color: #3498db;
    color: #fff;
    font-size: 1.5em;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.button:hover {
    background-color: #63e90f; /* Green for hover */
    border-color: #7d7dec;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
    color: rgb(255, 255, 255);
}

.button:active {
    border-bottom: 2px solid #1d6fa8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: scale(0.98);
}

.button:nth-of-type(2) {
    background-color: #e24aa3;
}

.button:nth-of-type(2):hover {
    background-color: #63e90f;
    border-color: #7d7dec;
}

.button:nth-of-type(3) {
    background-color: #eb2a19;
}

.button:nth-of-type(3):hover {
    background-color: #63e90f;
    border-color: #7d7dec;
}

.control-buttons {
    margin-top: 20px;
}

.control-buttons button {
    border-radius: 20px; /* More rounded corners */
    border: 2px solid #e5e5e5;
    background-color: #1e90ff; /* Brighter blue for better visibility */
    color: #fff;
    font-size: 1.2em; /* Slightly larger text */
    padding: 12px 24px; /* Increased padding for a larger button */
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.control-buttons button:hover {
    background-color: #63e90f; /* Green for hover state */
    border-color: #7d7dec;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}

.control-buttons button:active {
    border-bottom: 2px solid #1d6fa8;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: scale(0.98);
}
