body {
	font-family: sans-serif;
	background-color: #000;
}

.container {
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.7);
	position: fixed;
	z-index: 100;

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;

	transition: opacity .2s, display .2s .2s;
	opacity: 1;

	&.disabled {
		opacity: 0;
		display: none;
	}

	& .logo {
		flex: 0 1 100%;
		text-align: center;
		font-size: 80px;
		color: #ff0000;
		font-weight: bold;
		margin-bottom: 10px;
		font-family: 'Arial', sans-serif;
	}

	& h1 {
		flex: 0 1 100%;
		position: relative;
		z-index: 200;
		text-align: center;
		margin-bottom: 5vh;
		color: #fff;
		margin: 0;
		padding: 0;
		font-family: 'Arial', sans-serif;
	}

	& h3 {
		flex: 0  1 100%;
		text-align: center;
		color: #fff;
		height: 15vh;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0;
		padding: 0;
	}
}

.button {
	width: 200px;
	height: 50px;
	background-color: #ff0000;
	color: #fff;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-weight: bold;
	font-family: 'Arial', sans-serif;
}

.controls {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	font-weight: bold;
	z-index: 1000;
	max-width: 400px;
	gap: 10px;
}

.controls__speeddown {
	padding: 5px 12px;
	margin-right: 10px;
	background-color: #ff0000;
	color: #fff;
	border-radius: 3px;
	cursor: pointer;
	border: 1px solid #ff0000;
	font-size: 14px;
	font-weight: bold;
	font-family: 'Arial', sans-serif;
}

.controls__speedup {
	padding: 5px 10px;
	background-color: #ff0000;
	color: #fff;
	border-radius: 3px;
	cursor: pointer;
	border: 1px solid #ff0000;
	font-size: 14px;
	font-weight: bold;
	font-family: 'Arial', sans-serif;
}

.controls__pause {
	padding: 5px 10px;
	background-color: #ff0000;
	color: #fff;
	border-radius: 3px;
	cursor: pointer;
	margin-left: 10px;
	border: 1px solid #ff0000;
	font-size: 14px;
	font-weight: bold;
	font-family: 'Arial', sans-serif;
}

.controls__wave {
	padding: 5px 10px;
	background-color: #ff0000;
	color: #fff;
	border-radius: 3px;
	cursor: pointer;
	margin-left: 10px;
	border: 1px solid #ff0000;
	font-size: 14px;
	font-weight: bold;
	font-family: 'Arial', sans-serif;
}

.controls__scale {
	padding: 5px 10px;
	background-color: #ff0000;
	color: #fff;
	border-radius: 3px;
	cursor: pointer;
	margin-left: 10px;
	border: 1px solid #ff0000;
	font-size: 14px;
	font-weight: bold;
	font-family: 'Arial', sans-serif;
}

.slider-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 12px;
	color: #fff;
	font-family: 'Arial', sans-serif;
	font-weight: bold;
}

.slider-container label {
	margin-bottom: 5px;
	text-align: center;
}

.slider-container input[type="range"] {
	width: 80px;
}

.controls__mode {
	padding: 5px 10px;
	background-color: #ff0000;
	color: #fff;
	border-radius: 3px;
	cursor: pointer;
	margin-left: 10px;
	border: 1px solid #ff0000;
	font-size: 14px;
	font-weight: bold;
	font-family: 'Arial', sans-serif;
}