@charset "UTF-8";

*{
	margin: 0;
	padding: 0;
}

.header{
	height: 100vh;
	background: rgba(0,0,100,0.4);
}

.video-background{
	position: absolute;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	width:auto;
	height: auto;
	z-index: -1;
}

@media (min-aspect-ratio:16/9) {
	.video-background{
		width: : 100%;
		height: auto;
	}
}

@media (max-aspect-ratio:16/9) {
	.video-background{
		width: : auto;
		height: 100%;
	}
}