* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

body {
	padding: 0;
	margin: 0;
	background-image: radial-gradient(#fff 70%, #eee);
}

#centered {
	position: relative;
	height: 100vh
}

#centered .content {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%)
}

.content {
	max-width: 560px;
	width: 100%;
	padding-left: 190px;
	line-height: 1.1
}

.content .mascot-bg {
	position: absolute;
	left: 0;
	top: 0;
	display: inline-block;
	width: 150px;
	height: 300px;
	background-size: cover
}

.content .mascot {
	text-align: left;
	position: absolute;
	left: 0;
	top: 0;
	display: inline-block;
	width: 150px;
	height: 300px;
	background-size: cover
}

.content .mascot-bg:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 50%;
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
	border-radius: 50%;
	background-color: #f2f5f8;
	background-position: top; 
	z-index: -1
}

.content h1 {
	font-family: 'Exo 2',sans-serif;
	font-size: 65px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 10px;
	color: #000;
}

.content h2 {
	font-family: 'Roboto Slab',sans-serif;
	font-size: 21px;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
	color: #007bbd;
}

.content h3 {
	font-family: 'Roboto Slab',sans-serif;
	font-size: 21px;
	font-weight: 700;
	margin: 0;
	color: #007bbd;
}

.content p {
	font-family: Helvetica,sans-serif;
	color: #555;
	font-weight: 15px;
}

.content a {
	font-family: 'Roboto Slab',sans-serif;
	display: inline-block;
	font-weight: 700;
	border-radius: 40px;
	text-decoration: none;
	color: #007bbd;
}

.content .logo {
	width: 150px;
	height: 30px;
	border: 0;
}

@media only screen and (max-width:767px){
	
.content {
	max-width: 320px;
	width: 100%;
	padding-left: 160px;
	line-height: 1.1;
	text-align: center;
}

.content .mascot-bg:before {
	width: 100%;
	height: 50%;
	left: 0;
	right: 0;
	margin: auto;
}
	
.content .mascot-bg {
	width: 100px;
	height: 200px;
	left: 0;
	right: 0;
	margin: auto;
}

.content .mascot {
	width: 100px;
	height: 200px;
	left: 0;
	right: 0;
	margin: auto;
}

.content {
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 200px
}

}