.video-background {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
background-color: #000;
}
.video-background iframe {
position: absolute;
top: 50%;
left: 50%;
width: 100vw;
height: 100vh;
transform: translate(-50%, -50%);
object-fit: cover;
pointer-events: none;
}
.content-overlay {
position: relative;
z-index: 2;
color: white;
text-align: center;
padding: 2rem;
}
@media (max-width: 768px) {
.video-background {
height: 70vh;
}
}