@import url('https://fonts.googleapis.com/css2?family=Yandex+Sans+Text:wght@300;400;500&display=swap');
body {
	font-family: 'Yandex Sans Text', sans-serif;
}

.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;
	}

	& h1 {
		flex: 0 1 100%;
		position: relative;
		z-index: 200;
		text-align: center;
		margin-bottom: 5vh;
		color: #FFDB4D;
		margin: 0;
		padding: 0;
		font-weight: 500;
	}

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

.button {
	width: 200px;
	height: 50px;
	background-color: #FFDB4D;
	color: #000000;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	font-weight: 500;
	font-size: 16px;
	transition: background-color 0.2s;
}

.button:hover {
	background-color: #FFC700;
}

.controls {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	font-weight: bold;
	z-index: 1000;
}

.controls__speeddown {
	padding: 8px 12px;
	margin-right: 10px;
	background-color: #FFDB4D;
	color: #000000;
	border-radius: 6px;
	cursor: pointer;
	border: none;
	font-size: 16px;
	font-weight: 500;
	transition: background-color 0.2s;
}

.controls__speeddown:hover {
	background-color: #FFC700;
}

.controls__speedup {
	padding: 8px 10px;
	background-color: #FFDB4D;
	color: #000000;
	border-radius: 6px;
	cursor: pointer;
	border: none;
.logo {
	width: 64px;
	height: 64px;
	margin-bottom: 20px;
	border-radius: 8px;
}
	font-size: 16px;
	font-weight: 500;
	transition: background-color 0.2s;
}

.controls__speedup:hover {
	background-color: #FFC700;
}

.controls__pause {
	padding: 8px 10px;
	background-color: #FFDB4D;
	color: #000000;
	border-radius: 6px;
	cursor: pointer;
	margin-left: 10px;
	border: none;
	font-size: 16px;
	font-weight: 500;
	transition: background-color 0.2s;
}

.controls__pause:hover {
	background-color: #FFC700;
}

.controls__instrument {
	padding: 8px 10px;
	background-color: #FFDB4D;
	color: #000000;
	border-radius: 6px;
	cursor: pointer;
	margin-left: 10px;
	border: none;
	font-size: 16px;
	font-weight: 500;
	transition: background-color 0.2s;
}

.controls__instrument:hover {
	background-color: #FFC700;
}

.controls__background {
	padding: 8px 10px;
	background-color: #FFDB4D;
	color: #000000;
	border-radius: 6px;
	cursor: pointer;
	margin-left: 10px;
	border: none;
	font-size: 16px;
	font-weight: 500;
	transition: background-color 0.2s;
}

.controls__background:hover {
	background-color: #FFC700;
}