/* Montserrat from google fonts */
@import url(http://fonts.googleapis.com/css?family=Montserrat:400,700);

/* general styles */
html, body{
	overflow: hidden;
	font-family: 'Montserrat', sans-serif;
	}

.wrapper {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height:100%;
	z-index: 1;
}

.content{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height:100%;
	z-index: 3;
	color:#fff;
	text-align: center;
}


.logo{
	max-width:100px;
	margin-top:45px;
}


h2{
	text-transform: uppercase;
	margin-top:30px;
	margin-bottom: 40px;
	font-size: 20px;
	font-weight: bold;
	padding:0 20px;
}



.engage{
	position: absolute;
	bottom:10px;
	left:0;
	text-align: center;
	width:100%;
}
.social{
	margin-top:40px;
	color: #fff7f7;
}

.social a:first-child{
	margin-right: 10px;
}

.social a{
	opacity: 0.8;
	 -webkit-transition: all 0.1s ease-out;
     -moz-transition: all 0.1s ease-out;
      -ms-transition: all 0.1s ease-out;
       -o-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out;
          color: #ffffff;

}

.social a:hover{
	opacity:1;
	color: #ffffff;
}

.social img{
	width:40px;
}


/* desktop styles */

@media only screen and (min-width: 768px) {
		.logo{
		max-width: 350px;
		margin-top:300px;
	}
  	h2{
  		margin-top:80px;
		font-size:50px;
		line-height: 60px;
		margin-bottom: 60px;
  	}
  		.engage{
		position: absolute;
		bottom:30px;
		text-align: center;
		width:100%;
	}
	.social{
		margin-top:20px;
		color: #ffffff;

	}

	.social a:first-child{
		margin-right: 10px;
	}

	.social a{
		opacity: 0.8;
		 -webkit-transition: all 0.1s ease-out;
	     -moz-transition: all 0.1s ease-out;
	      -ms-transition: all 0.1s ease-out;
	       -o-transition: all 0.1s ease-out;
	          transition: all 0.1s ease-out;
	          color: #ffffff;

	}

	.social a:hover{
		opacity:1;
	}
	
	.social img{
		width:50px;
	}


}