@import url("fontawesome/all.css");

@import url("//fonts.googleapis.com/css?family=Poppins");

html, body {
	min-height: 100%;
	padding: 0;
	margin: 0;
}

body {
	background: #191919;
	color: #888888;
	font: 18px 'Raleway', sans-serif;
	-webkit-text-size-adjust: none;
	padding: 0;
	margin: 0;
}

img {
	max-width: 100%;
	height: auto;
}

i {
	margin-right: 5px;
}

a {
	font: inherit;
	color: inherit;
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: #ffa666;
}

strong {
	font-weight: 700;
}

.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#fullPage {
	z-index: 1;
	width: 100vw;
	height: 100vh;
	align-items: center;
	display: flex;
	justify-content: center;
	text-align: center;
	position: relative;
}

#fullPage:before  {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .2;
	z-index: -1;
	background-image: url('../images/fullbg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

#fullPage #welcome  {
	color: #ffffff;
	font-family: 'Poppins';
 	margin: 0;
	padding: 0;
}

#fullPage #welcome li {
	list-style-type: none;
	max-width: 800px;
	padding: 20px;
}

#fullPage #welcome li:first-of-type {
	text-transform: uppercase;
	font-size: 50px;
}

#fullPage #welcome li:last-of-type {
	padding-top: 20px;
	font-size: 20px;
}

.header {
	overflow: hidden;
	background-color: #333;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
}

.header div {
	float: right;
	font-size: 15px;
	color: #fff;
	padding: 15px;
}

.header div span {
	font-size: 10px;
	color: #888888;
}

.header ul {
	float: left;
	margin: 0;
	padding: 15px;
}

.header li {
	float: left;
	list-style-type: none;
	padding: 0 20px 0 0;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size: 15px;
	margin: 0;
}

@media screen and (max-width: 500px) {
	.header li {
		float: none;
		display: block;
		text-align: left;
		padding-top: 8px;
	}

	.header li:first-of-type {
		padding-top: 0;
	}
}

.fadeIn {
	animation: fadeIn 3s;
	-webkit-animation: fadeIn 3s;
	-moz-animation: fadeIn 3s;
	-o-animation: fadeIn 3s;
	-ms-animation: fadeIn 3s;
}

@keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}

@-moz-keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}

@-o-keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}

@-ms-keyframes fadeIn {
	0% {opacity:0;}
	100% {opacity:1;}
}