
html, body {
	height: 100%;
	overflow: hidden;
}


html {
	/* background: #e1e1e1 url(../img/bg.jpg); */
	background: #ffffff;
	background-size: cover;
	background-position: center center; 
}


.logo {
	width: 450px;
	position: fixed;
	top: 7%;
	left: 40%;
	margin: 150px 0 0 -265px;
	
	opacity: 0;
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
	
	-webkit-transition: opacity 1s, -webkit-transform 0.5s;
	transition: opacity 1s, transform 0.5s;
}

.logo.active {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

@font-face {
    font-family: HelveticaNeue-Thin;
    src: url(HelveticaNeue-Thin.otf);
}
h1 {
   font-family: HelveticaNeue-Thin; 
   font-weight: 300;
   color:#00000;
   font-size:300%
}
h2 {
  color:#333333;
  font-family:Arial, Helvetica, sans-serif;
  font-weight:bold;
}
p {
  color:#00000;
  font-family:Arial, Helvetica, sans-serif;
  font-size:70%;
}

.social-media-links {
	width: 450px;
	position: fixed;
	top: 10%;
	left: 50%;
	margin: 150px 0 0 -265px;

	opacity: 0;
	-webkit-transform: scale(0.8);
	transform: scale(0.8);

	-webkit-transition: opacity 1s, -webkit-transform 0.5s;
	transition: opacity 1s, transform 0.5s;
}
.social-media-links.active {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}
.social-media-links li {
	text-indent: -1000px;
	overflow: hidden;
	width: 70px;
	height: 70px;
	float: left;
	margin: 0 10px;
}
.social-media-links a {
	width: 70px;
	height: 70px;
	display: block;
	border-radius: 50%;
	-webkit-transition: background-color 0.3s, -webkit-transform 0.1s;
	transition: background-color 0.3s, transform 0.1s;
	-webkit-transform: scale(1);
	transform: scale(1);	
	background-repeat: no-repeat;
	background-position: center center;	
}
.social-media-links a:hover {
	background-color: #f2f2f2; 
}
.social-media-links a:active {
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
}

.facebook {
	background-image: url(../img/f.png);
}
.linkedin {
	background-image: url(../img/in.png);
}
.mail {
	background-image: url(../img/mail.png);
}
.google-plus {
	background-image: url(../img/icon-gplus.png);
}
