/* Reset some default styles */
body, h1, h2, p, video {
    margin: 0;
    padding: 0;
}

/* Apply a background image to the whole page */
body {
    background-image: url('background.jpg'); /* You can use any suitable background image */
    background-size: cover;
    background-position: center;
    font-family: Arial, sans-serif;
    color: #fff;
}

/* Style the header */
header {
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 36px;
}

/* Style the video container */
.video-container {
    position: relative;
}

video {
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Style the description section */
.description {
    padding: 20px;
    text-align: center;
}

h2 {
    font-size: 24px;
    color: black;
}

p {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 10px;
    color: black;
}
