:root {
	
}

#bgvideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: 1;
}

main {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
}

h1 {
	position: relative;
	color: #ffffff;
	font-family: Nunito;
	font-size: 120px;
	text-align: center;
	font-weight: bold;
}
	h1::before {
		content: "The";
		position: absolute;
		left: 10px;
		top: 0px;
		font-size: 24px;
	}
.tagline {
	font-family: Nunito;
	color: #ffffff;
	font-size: 28px;
	text-align: center;
	letter-spacing: 6px;
	line-height: 1.5;
	margin: 80px 0px;
}


	.links {
		display: flex;
		flex-flow: row nowrap;
		justify-content: center;
	}
		.links a {
			display: block;
			margin: 0px 40px;
		}
		.links img {
			display: block;
			width: 100px;
		}

#switchAudio {
	position: absolute;
	left: 40px;
	top: 40px;
	width: 48px;
	height: 48px;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	font-size: 24px;
	background-color: #ffffff;
	border-radius: 50%;
}
#arrowAudio {
	position: absolute;
	left: 100px;
	top: 30px;
	font-size: 48px;
	color: #ffffff;
	animation-duration: 0.7s;
	animation-name: arrowMove;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
}

@keyframes arrowMove {
	from {
		left: 100px;
	}

	50% {
		left: 120px;
	}
	to {
		left: 100px;
	}
}
