* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'poppins', sans-serif;
}	
.back-video {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}
@media (min-aspect-ratio: 16/9){
	.back-video {
		width: 100%;
		height: auto;
	}
}	
@media (max-aspect-ratio: 16/9){
	.back-video {
		width: auto;
		height: 100%;
	}
}	

.hero {
	width: 100%;
	height: 100vh;
	position: relative;
	padding: 0 5%;
	display: flex;
	align-items: center;
	justify-content: center;
}
nav {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	padding: 10px 2%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
nav .logo {
	width: 80px;
}
nav ul li {
	list-style: none;
	color: #fff;
	display: inline-block;
	margin-left: 40px;
}
nav ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
}
.content {
	text-align: center;
}
.content h1 {
	font-family: sans-serif;
	font-size: 120px;
	color: #FFF;
	font-weight: 600;
	transition: 0.5s;
}
.content h1:hover {
	-webkit-text-stroke: 2px #FFF;
	color:transparent;
}


