body {
	background-color: #141414;
	font: 14px "Roboto", sans-serif;
	color: #fff;
	line-height: .5rem;
	margin: 0;
}
.content {
	background: linear-gradient(to right, #38ff9f, #ffff3a);
  	-webkit-animation: background 10s infinite linear;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: flex;
   	justify-content: center;
   	text-align: center;
   	align-items: center;
	box-sizing: border-box;
	border: 2px #141414 solid;
	border-radius: 11px;
}
.wrapper {
	padding: 20px;
	text-shadow: 1px 1px rgba(0, 0, 0, .2);
}
a {
	color: #222;
	text-decoration: none;
	font-weight: normal;
}
h1 {
	font-size: 0.8rem;
}
h2 {
	font-family: 'story_book-webfont';
	font-size: 2.5rem;
	color: #000;
	line-height: 0.2rem;
}
h2+p {
	margin-top: -13px;
	font-weight: normal;
    	line-height: 1.1;
}
@font-face {
font-family: 'story_book-webfont'; 
src: url('../font/story_book-webfont.eot');
src: url('../font/story_book-webfont.eot?#iefix') format('embedded-opentype'),
     url('../font/story_book-webfont.woff2') format('woff2'),
     url('../font/story_book-webfont.woff') format('woff'),
     url('../font/story_book-webfont.ttf') format('truetype'),
     url('../font/story_book-webfont.svg#mekar_script_freeregular') format('svg');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@-webkit-keyframes background {
	0% {-webkit-filter: hue-rotate(0deg);}
	50% {-webkit-filter: hue-rotate(-90deg);}
  	100% {-webkit-filter: hue-rotate(0deg);}
}