@font-face {
    font-family: 'manicregular';
    src: url('fonts/manic-webfont.woff2') format('woff2'),
         url('fonts/manic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
*{
	margin: 0px;
	padding: 0px;
}
body,html{
	 width: 100%;
	 height: 100%;
	 margin: 0px;
	 padding: 0px;
	 font-family: 'Roboto';
	 font-size: 20px;
	 line-height: 28px;
	 color: #000;
	 text-align: center;
}


h1{
	font-family: 'manicregular';
	font-size: 50px;
	text-transform: uppercase;
	letter-spacing: 0.7em;
	margin: 0 0 40px;
	line-height: 80px;
}
p,a{
	font-size: 18px;
	line-height: 32px;
	letter-spacing: 0.56em;
	color: #000;
	text-transform: uppercase;
}
a{
	font-size: 14px;
	border-bottom: 1px solid;
	text-decoration: none;
	transition: all 0.4s ease-in-out;
	padding-bottom: 5px;
}
a:hover{
	text-decoration: none;
	border-bottom: 1px solid transparent;
	color: #000;
}
#logo{
	width: 240px;
	max-width: 90%;
	margin:50px auto 0px;
}
#icon{
	margin: 0px;
    position: absolute;
    top: 40px;
    right: 50px;
    width: 32px;
}
#content{
	height: auto;
	display: block;
	position: absolute;
	top: 50%;
	left: 0%;
	width: 100%;
	text-align: center;
	transform: translate(0,-50%);
}

@media screen and (max-width: 768px){
	#icon{
		bottom: 50px;
		top: initial;
	}
	h1{
		font-size: 40px;
		line-height: 50px;
	}
	#content{
		width: 90%;
		left: 5%;
	}
	p,p a{
		font-size: 12px;
	}
}