body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Helvetica', sans-serif;
    background-color: #f4f1ea;
    color: #fff;
    opacity: 0.9;
}

.password-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.password-container input[type="password"] {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.password-container button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #f1c40f;
    color: #000;
    border: none;
    border-radius: 5px;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1; /* Ensure it's behind the content */
}

.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #f4f1ea;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #f1c40f;
}

.sidebar .closebtn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.openbtn {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 20px;
    cursor: pointer;
    color: #f4f1ea;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    border-radius: 5px;
    z-index: 1;
}

.openbtn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
    
}

.content h1 {
    font-size: 50px;
    margin-bottom: 10px;
    font-weight: bold;
}


.content p {
    font-size: 20px;
    margin-top: 0;
    font-weight: bold;

}

#buttonContainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

#playButton, #muteButton {
    padding: 10px 20px;
    font-size: 24px; /* Increase font size for better visibility */
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 2px solid #fff; /* Add a white border */
    border-radius: 10px; /* Adjust border radius */
    display: inline-flex; /* Display buttons inline */
    align-items: center;
    justify-content: center;
}

#playButton i, #muteButton i {
    pointer-events: none; /* Ensure icon doesn't interfere with button clicks */
}

#playButton:hover, #muteButton:hover {
    background-color: rgba(0, 0, 0, 0.9);
    border-color: #f1c40f; /* Change border color on hover */
}


.about-content {
    padding: 50px;
    background-color: #f4f1ea; /* Light background to distinguish it */
    color: #333; /* Darker text color for readability */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 50px auto;
}

.about-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Common styles for body and container */
body, html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f8f8;
    color: #000; /* Set default text color to black */
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll; /* Enable scrolling */
}

.container {
    max-width: 900px; /* Ensure consistent width */
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin: 20px auto;
}

h1, h2 {
    color: #000; /* Set heading color to black */
}

p, ul, li {
    color: #000; /* Set text color to black */
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

