@import url('https://fonts.googleapis.com/css?family=Yantramanav:100');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400');


html, body{
	margin: 0;
	padding:0;
	height:100%;
	width: 100%;
}
.intro {
	height:100%; 
	width:100%;
	margin: auto;
	background: url(http://i.imgur.com/SkdUVnx.jpg) no-repeat 50% 50%; 
	background-size: cover;
	top:0;
	display: table;
	padding-top: -50px;


}

.intro .inner{
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	max-width: none;
}

.content {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	padding-bottom: 28%;

}


.content h1{
	font-family: "Yantramanav" , sans-serif;
	font-size: 600%;
	font-weight: 100;
	color:white;
	margin-top: 0;
	margin-bottom: 10%;
	
	
}

.btn{
	font-family: "Montserrat", sans-serif;
	font-size: 140%;
	font-weight: 400;
	color:white;
	text-decoration: none;
	text-transform: uppercase;
	border:solid white;
	padding: 10px 20px;
	border-radius: 9px;
	transition: all 0.4s;	
}
.btn:hover{
	color:black;
	border: solid black;

}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #ffffff;
}

.spinner {
  border: 1px solid transparent;
  border-radius: 5px;
  position: relative;
}

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65px;
  height: 65px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #454545;
  border-top-color: #ffffff;
  animation: spinner 1s linear infinite;
}

@-webkit-@keyframes spinner {
  to {transform: rotate(360deg);}
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}

/*--- Media Queries --*/
@media screen and (max-width: 900px) {
.content{
	padding-bottom: 30%;
}
.content h1{
	font-size:450%;}
.btn { 
	font-size: 110%;
	padding: 9px 17px;
}

@media screen and (max-width: 768px) {
.content{
	padding-bottom: 40%;
}
.content h1{
	font-size:300%;}
.btn { 
	font-size: 110%;
	padding: 9px 17px;
}

@media screen and (max-width: 480px) {
	.content{
	padding-bottom: 50%;
}
.content h1{
	font-size:250%;}
.btn { 
	font-size: 110%;
	padding: 6px 14px;
}
