CSS (style.css)

/* Reset default margins */
body, html {
    margin: 0;
    padding: 0;
}

/* Header container */
.video-header {
    position: relative;
    height: 80vh; /* 80% of viewport height */
    overflow: hidden;
}

/* Video styling */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover; /* Ensures video covers the area */
}

/* Overlay text */
.header-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.4); /* Optional dark overlay for readability */
}

.header-content h1 {
	font-size: 60px;
	margin-bottom: 0.5rem;
}

.header-content p {
	font-size: 0.5cm;
	color: #fff;
	text-align: center;
}
