* {
	margin: 0;
	padding:0;
	user-select: none;
}
body {
	width: 100%;
	overflow: hidden;
}

body {
	background: url(../bkgs/wp01.jpg) repeat;
	background-position: center;
	width: 100%;
}

.image-preload {
	position: absolute;
	left: -9999px;
}

#voiceSelect {
	position: absolute;
	bottom: 0;
	height: 2em;
	opacity: 0.9;
	width: 100%;
	border: 0;
	z-index: 3;
}

.frosted {
	z-index: 0;
	position: absolute;
	width: 70%;
	height: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-color: rgba(255, 255, 255, .15);
	backdrop-filter: blur(10px);
	box-shadow: 0px 0px 50px rgba(0, 0, 0, .5);
}

#wrapper {
	z-index: 1;
	position: absolute;
	width: 70%;
	height: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

#typewriter {
	z-index: 2;
	top: 40%;
	transform: translateY(-40%);
	font-size: 2.5em;
	text-align: justify;
	color: rgba(0,0,0,0.6);
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5), 3px 3px 8px rgba(0,0,0,0.3);
	word-break: break-word;
	font-family: 'Life Savers', cursive;
	font-weight: 100;
	text-rendering: optimizeLegibility;
	hyphens: auto;
	padding-left: 50px;
	padding-right: 50px;
	padding-bottom: 10px;
}

#typewriter span.Typewriter__wrapper {
	overflow: hidden;
}

#author {
	margin-top: 50px;
	font-weight: bold;
}

@media only screen and (max-width: 800px) {
	#typewriter {
		font-size: 1.7em;
		top: 30%;
		transform: translateY(-30%);
		padding-left: 10px;
		padding-right: 10px;
	}
}

.boule {
	z-index: 3;
	width: 40px;
	position: absolute;
	right: 60px;
	top: 0px;
	animation: balance ease-in-out 1.2s infinite alternate;
	transform-origin: center -60px;
	filter: drop-shadow(0px 0px 12px #333);
}

@keyframes balance{0%{transform:rotate(10deg)}100%{transform:rotate(-10deg)}}
