html, body { 
	margin: 0; 
	width: 100%; 
	height: 100%; 
}

body {
	background-image: url(media/kys.webp);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	overflow:hidden;
}

audio {
	opacity:0.25;
	transition: opacity .3s ease;
	filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.5));
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

audio:hover {
	opacity:1;
}

.the {
	height:100%;
	width:100%;
	position:fixed;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

h1 {
	text-align:center;
	color:white;
	text-shadow:3px 3px 3px black;
	max-width:100%;
	max-height:auto;
	font-family:Comic Sans MS;
}

.button {
	width: 100%;
	background-color: RGBA(0,0,0,0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px;
	border-top: 1px solid rgba(255,255,255,0.3);
}

.button span {
	font-family:Comic Sans MS;
	color: white;
	margin-right: 12px;
	text-shadow: 0px 0px 2px white;
}

.button a {
	width: 88px;
	height: 31px;
	margin: 0px;
	background-image: url("media/button.gif");
	-ms-interpolation-mode: nearest-neighbor;
	image-rendering: crisp-edges;
	image-rendering: pixelated;
}

.overlay {
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
	background-color: black;
	animation: fadeanim ease 2s;
	animation-fill-mode: forwards;
	position: absolute;
	top: 0px;
	left: 0px;	
	z-index: 1;
	pointer-events: none;
}

.counter {
	transform: scale(2.0) translateY(30px);
	image-rendering: pixelated;
	image-rendering: -moz-crisp-edges;
	image-rendering: crisp-edges;
	position: absolute;
}

@keyframes fadeanim {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
     }
}