body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Light gray background for contrast */
    overflow: hidden;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.922);
    color: #1d2936;
    text-align: center;
    padding: 05px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.video-container {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
}

#backgroundVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    position: relative;
    z-index: 2; /* Ensure content is above the video */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(240, 232, 232);
}

.text-container {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
}

button {
    background-color: #1d2936; /* Blue color */
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #446a93; /* Darker blue on hover */
}

footer {
    background-color: #1d2936; /* Matching the button color */
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
}

.footer-content p {
    margin: 5px 0; /* Reduces space between text lines */
}

footer a {
    color: #cfcfcf; /* Light gray color for links for better visibility against dark background */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline; /* Adds an underline on hover for better interaction feedback */
}
