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

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

/* Video background styling */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Ensure overflow is hidden */
    z-index: -1; /* Keeps the video in the background */
}

video {
    width: 100%;
    height: 105%; /* Extend the video height by 5% to cover more */
    object-fit: cover;
    position: absolute;
    top: -5%; /* Shift video up by 5% to hide the bottom */
    left: 0;
}

/* Content container */
.content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/* Text with a translucent background */
.text-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    color: #fff; /* White text for better contrast */
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ffcc00; /* Slightly different color for a highlighted header */
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #fff;
}

footer p {
    font-size: 0.9em;
}
