*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Cyberfall', calibri, sans-serif;
}

@font-face{
	font-family: 'Cyberfall';
	src: url ('Cyberfall.otf');
}

body{
	height: 100vh;
	width: 100%;
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
}

header video {
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .overlay {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-color: #30303061;
}

h1{
	text-align: center;
	font-size: 100px ;
	color: #fff;
	font-weight: 250;	
	margin-bottom: 35px;
}


.inputbox{
	position: relative;
	width: 100%;
	border-radius: 25px;
	outline: none;
	background: transparent;
	border: 2px solid rgba(255,255,255,0.2);
	margin-bottom: 30px;
	
	
}

.inputbox input{
	width: 100%;
	padding: 15px;
	border-radius: 25px;
	outline: none;
	background-color: transparent;
	border: 1px solid rgba(255,255,225,0.1);
	color: #fff;
	font-family: calibri;
	font-size: 25px;
	padding-right: 40px;
	
}
.btn{
	width: 100%;
	padding: 15px;
	border-radius: 25px;
	outline: none;
	background-color: rgba(255,255,225,0.4);
	border: 0;
	color: #010846;
	font-family: calibri;
	font-size: 25px;
	font-weight: bold;
	cursor: pointer;
	border: 2px solid transparent;
	transition: 0.5s;
	
}

.btn:hover{
	background-color: transparent;
	border: 2px solid rgba(255,255,225,0.2);
	color: #fff;
}

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

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


