body {
	background-image: url("bg.png");
	background-repeat: repeat-y;
	background-position: left top;
	background-size: auto;
}

.fullscreen-bg {
	/* width: 100%;
	height: 100vh;
	display: flex;
	overflow: hidden;
	*/
	position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
}

.section h1 {
	text-align: center;
	font-size: 2rem;
	color: rgba(255, 1, 72, 1.0);
	font-weight: 700;
	letter-spacing: 2px;
	margin-top: 280px;
	z-index: 1;
	font-family: 'Syncopate', sans-serif;
	text-shadow:  0 1px 0 rgba(255, 255, 255, 0.5);
}

.racing {
	color: rgba(155, 155, 155, .7);
	font-weight: 400;
}

.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
}

#mute-toggle {
	position: fixed;
	bottom: 20px;
	right: 20px;
	padding: 8px;
	background: none;
	border: none;
	cursor: pointer;
	color: rgba(255, 1, 72, 0.7);
	opacity: 0.6;
	transition: opacity 0.25s ease, color 0.25s ease;
}

#mute-toggle:hover {
	opacity: 1;
	color: rgba(255, 1, 72, 1.0);
}