:root {
	--orange-color: darkorange;
	--max-text-width: 800px;
	--max-title-width: 600px;
}

body {
	font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
		sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0;
	font-size: 14pt;
}

.white-on-black {
	background-color: black;
	color: #fff;
}

a {
	color: var(--orange-color);
}

.page-container {
	width: 90%;
	max-width: var(--max-text-width);
	position: relative;
	margin: 0 auto;
	margin-bottom: 50px;
}

.video-container-limiter {
	width: 100%;
	max-width: 700px;
	position: relative;
	margin: 0 auto;
	margin-bottom: 0px;
}

.video-container {
	position: relative;
	width: 100%;
	margin: 0 auto;
	/* Center the video */
	padding-bottom: 56.25%;
	/* 16:9 aspect ratio (9/16 = 0.5625) */
	height: 0;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

h1 {
	font: 1.75em "Futura-Medium";
	line-height: 120%;
	margin-top: 60px;
	margin-bottom: 40px;
	font-weight: 500;
}
h2 {
	font: 1.35em "Futura-Medium";
	margin-top: 50px;
	margin-bottom: 10px;
	font-weight: 500;
}
h3 {
	font: 1.2em "Futura-Medium";
	font-weight: 400;
}

@media (max-width: 768px) {
	/* Adjust the width breakpoint as needed */
	h1 {
		font: 1.55em "Futura-Medium"; /* Applied on mobile */
		line-height: 110%;
	}
}
