body {
	justify-content: flex-start;
	align-items: flex-start;
	color: #fff;
}
* > * {
	margin-bottom: 0.5rlh;
}

a {
	color: #e0e0e0;
	text-decoration: underline;
}
a:hover {
	color: #ff6347;
	text-decoration: none;
}
a:visited {
	color: #e1e1e1;
}
a:visited:hover {
	color: #ff6347;
}

#bg-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

#bg-video {
	filter: brightness(0.6);
}

.audio-controls {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 1rem;
}

#play-btn {
	background: none;
	border: none;
	color: #e0e0e0;
	font: inherit;
	cursor: pointer;
	padding: 0;
	width: 8ch;
	text-align: left;
}

#play-btn:hover {
	color: #ff6347;
}

#volume {
	-webkit-appearance: none;
	appearance: none;
	width: 100px;
	height: 2px;
	background: #e0e0e0;
	outline: none;
	cursor: pointer;
}

#volume::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: calc(4px + var(--thumb-size) * 12px);
	height: calc(4px + var(--thumb-size) * 12px);
	background: #e0e0e0;
	border-radius: 50%;
	cursor: pointer;
}

#volume::-moz-range-thumb {
	width: calc(4px + var(--thumb-size) * 12px);
	height: calc(4px + var(--thumb-size) * 12px);
	background: #e0e0e0;
	border: none;
	border-radius: 50%;
	cursor: pointer;
}

#volume:hover::-webkit-slider-thumb {
	background: #ff6347;
}

#volume:hover::-moz-range-thumb {
	background: #ff6347;
}

.video-controls {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.play-video-btn {
	background: none;
	border: none;
	color: #e0e0e0;
	font: inherit;
	cursor: pointer;
	padding: 0;
	width: 8ch;
	text-align: left;
}

.play-video-btn:hover {
	color: #ff6347;
}

#demo-01,
#demo-02 {
	width: 100%;
	max-width: 800px;
}

/* Mobile first base styles */

/* Small — 480px+ */
@media (min-width: 480px) {
}

/* Tablet — 768px+ */
@media (min-width: 768px) {
}

/* Desktop — 1024px+ */
@media (min-width: 1024px) {
}

/* Large desktop — 1280px+ */
@media (min-width: 1280px) {
}

/* XL — 1536px+ */
@media (min-width: 1536px) {
}

/* Serve portrait crop on mobile */
@media (max-width: 767px) {
	#bg-video {
		/* optionally shift focus point */
		object-position: center center;
	}
}
