/* Style the video background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Place video behind content */
}

.video-background video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

/* Content styling */
.content {
    position: relative;
    z-index: 1; /* Place content above video */
    padding: 20px;
    color: Orange;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

p {
    font-size: 1.5em;
    margin-bottom: 20px;
}
