html {
	font-family: 'Roboto', sans-serif;
	background: url(../res/bg.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	font-size: 14px;
}

@media (max-width: 576px) {
	html {
		font-size: 14px;
	}
}

@media (min-width: 700px) {
	html {
		font-size: 16px;
	}
	.main > .logo > img {
		width: 200;
		animation: fadein 0.6s ease-in-out;
		-webkit-animation: fadein 0.6s ease-in-out;
	}
}

@media (min-width: 2100px) {
	html {
		font-size: 20px;
	}
	.main > .logo > img {
		width: 200;
	}
}

.main {
	text-align: center;
	color: #FAFAFA;
}

.main > .logo {
	position: absolute;
	margin-left: auto;
	margin-right:auto;
	left:0;
	right:0;
	top:0;
	padding-right: 350px;
}

.main > .intro {
	font-family: 'Reem Kufi', sans-serif;
	font-size: 3.75em;
	font-weight: 600;
	margin-left: auto;
	margin-right: auto;
	margin-top:5vh;
}

.main > .tagline {
	font-size: 1.5rem;
	margin-top: 15px;
	margin-bottom: 25px;
	font-weight: 100;
	line-height: 1.5;
	padding-top: 5px;
	padding-bottom: 5px;
	-webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.5);
	box-shadow:  0px 5px 40px -10px rgba(0,0,0,0.5);
}

#web {
	margin: 15px;
}

.button {
	-webkit-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
	-moz-box-shadow: 0px 5px 40px -10px rgba(0,0,0,0.57);
	box-shadow:  0px 5px 40px -10px rgba(0,0,0,0.57);
	background: none;
	color: #ffffff !important;
	font-weight: 100;
	padding: 20px;
	text-transform: uppercase;
	border-radius: 6px;
	display: inline-block;
	transition: all 250ms cubic-bezier(0.77, 0, 0.175, 1);	
	cursor: pointer;
	text-decoration: none;
	font-size: 1.4rem;
	letter-spacing: 3px;
}
	
.button:hover {
	font-weight: 500 !important;
	letter-spacing: 5px;
	transition: all 0.2s;
}

@-webkit-keyframes fadein { from { opacity: 0; } to { opacity: 1; }}