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

body {
	font-family: 'Impact', 'Arial Black', sans-serif;
	background-color: #000;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
}

.content-container {
	text-align: center;
	text-transform: uppercase;
}

.main-text {
	font-size: 15vw;
	line-height: 0.9;
	letter-spacing: -0.02em;
}

.colon-wrapper {
	position: relative;
	display: inline-block;
}

.hidden-link {
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 50px;
	/* Adjust height to be clickable underneath */
	cursor: pointer;
	z-index: 10;
	/* background: rgba(255, 0, 0, 0.3); /* Uncomment for debugging */
}

.video-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.video-overlay.hidden {
	opacity: 0;
	pointer-events: none;
}

#scrollVideo {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 1024px) {
	.main-text {
		font-size: 25vw;
	}
}