*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
		font-family: "Lato", sans-serif;

	
}

.hero{
	width: 100%;
	height: 100vh;
		
	position: relative;
	padding: 0 5%;
	display: flex;
	align-items: center;
	justify-content: center;
}



.content{
	text-align: center;
}
.content h1{
	font-size: 100px;
	color: #fff;
	font-weight: 600;
	transition: 0.5s;
}
.content h1:hover{
	-webkit-text-stroke: 2px #fff ;
	color: transparent;
}
.content a{
	text-decoration: none;
	display: inline-block;
	color: #fff;
	font-size: 24px;
	border: 2px solid #fff;
	padding: 14px 70px;
	border-radius: 5px;
	margin-top: 20px ;
}
.back-video{
	position: absolute;
	right: 0;
	bottom:0;
	z-index: -1;

}
.content h2{
  font-size: 70px;
  font-weight: 550;
  transition: 0.5s;
  color:#2eace6 ;
}
.content h2:hover{
	-webkit-text-stroke: 2px #2eace6 ;
	color: transparent;
}
p{
  font-size: 20px;
}
.email #text{
  font-size: 40spx;
}






@media (min-aspect-ratio: 16/9){
	.back-video{
		width: 100%;
		height: auto;
	}
}
@media (max-aspect-ratio: 16/9){
	.back-video{
		width: auto;
		height: 100%;
	}
}
