@charset "utf-8";

audio {
	display: none;
}

button {
	font-size: 22px;
	color: #eee;
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	padding: 5px;
	border: none;
	border-radius: 2px;
	outline: none;
	background: black;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
	opacity: 0.8;
	cursor: pointer;
	transition: all 0.4s ease-out;   
}

button.fade:hover {
	opacity: 0.8;
}

.fade {
	opacity: 0.2;
	top: 0;
	left: 0;
	transform: translate(0, 0);
}
