body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100%;
    color: white;
    overflow-x: hidden;
}

.Navbar {
    overflow: hidden;
    background-color: black;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.Navbar a {
    float: left;
    display: block;
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
}

.Navbar a:hover {
    background-color: #ddd;
    color: black;
}

.Navbar a.active {
    background-color: darkgray;
}

input[type="text"] {
    border: 2px solid #333;
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

#BackgroundVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

.VideoText {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px 20px;
    text-align: center;
    position: relative;
    border-radius: 10px;
    z-index: 10;
    margin: 80px;
}

.VideoOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.4); /* Lighten effect */
    z-index: 0; 
    pointer-events: none; 
}

.white-text {
    color: white;
}

a {
    color: #00aced; 
    text-decoration: none;
}

a:hover {
    color: #ffaa00; 
    text-decoration: underline;
}

.Section {
    background-color: rgba(0, 0, 0, 0.6);
    margin: 20px auto;
    padding: 40px 20px;
    max-width: 800px;
    border-radius: 10px;
    z-index: 10;
    position: relative;
}

form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: none;
    box-sizing: border-box;
}

form input[type="submit"] {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
}

form input[type="submit"]:hover {
    background-color: #555;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .Navbar a {
        float: none;
        display: block;
        text-align: center;
        font-size: 16px;
        padding: 10px;
    }

    .VideoText {
        padding: 30px 10px;
    }

    .Section {
        padding: 30px 15px;
    }
}
