body {
	font-family: Arial, Helvetica, sans-serif;
	color: #fff;
	margin: 0;
	background-color: #000;
	min-height: 100vh;
}

.loading {
	width: 100%;
	height: 100%;
	line-height: 100vh;
	text-align: center;
	font-size: 10rem;
	font-weight: bold;
	user-select: none;
	cursor: pointer;
}

.loading.hidden {
	display: none;
}

.loading p {
	font-size: 5rem;
	margin: 0;
}

.loading + .main {
	display: none;
}

.loading.hidden + .main {
	display: flex;
}

.main {
	min-height: 100vh;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: space-evenly;
	justify-content: space-evenly;
}

.volume {
	position: absolute;
	bottom: 0;
	margin: 0px;
	z-index: 100;
	width: 540px;
	margin: 10px 30px;
	height: 15px;
	outline: none;
	cursor: pointer;
}

.volumeIndicatorWrapper {
	position: absolute;
	width: 580px;
	height: 30px;
	z-index: 100;
	bottom: 0;
	margin: 35px 10px;
	opacity: 0;
}

.volumeIndicator {
	font-weight: bold;
	font-size: 1.2rem;
	background-color: #333;
	color: #fff;
	width: 60px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 15px;
	border: 1px solid #000;
}

.volume:hover + .volumeIndicatorWrapper {
	opacity: 1;
}

.traveler {
	width: 600px;
	height: 500px;
	overflow: hidden;
	margin: 0;
	padding: 0;
	margin: 10px;
	cursor: pointer;
	border-radius: 50px;

	filter: grayscale(100%);
	transition: filter 500ms;
	max-width: 100%;
}

.traveler.muted {
	cursor: not-allowed;
}

.traveler.on {
	filter: grayscale(0%);
}

.icon {
	position: absolute;
	width: 600px;
	height: 500px;
	overflow: hidden;
	top: 0;
	left: 0;
}

.credit {
	position: fixed;
	right: 0px;
	bottom: 0px;
	font-size: 2rem;
	margin: 2rem;
	user-select: none;
	pointer-events: none;
}