@font-face {
    font-family: 'Volte Light';
    src: url("fonts/Volte-Light.otf");
}
@font-face {
    font-family: 'Volte Bold';
    src: url("fonts/Volte-Bold.otf");
}
body{
	margin: 0;
	padding: 0;
	background-color: #000000;
	position: relative;
	font-family: 'Volte Light', sans-serif;
	color: #ffffff;
}
h1{
	font-size: 60px;
	font-family: 'Volte Bold', sans-serif;
	text-transform: uppercase;
}
.wrapper{
	width: 100vw;
	height: 100vh;
	position: relative;
	text-align: center;
	overflow: hidden;
}
.inner-wrapper{
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#card{
	width: 100%;
	max-width: 765px;
}
.email{
	text-align: center;
	position: absolute;
	bottom: 12%;
	left: 0;
	right: 0;
	margin: auto;
	display: flex;
	gap: 12px;
	justify-content: center;
}
.email a{
	display: block;
	color: #ffffff;
	text-decoration: none;
	border: 1px solid #fff;
	padding: 5px 35px;
	border-radius: 25px;
	font-weight: 300;
	font-size: 14px;
}
a:hover{
	text-decoration: none;
}
@media screen and (max-width: 1200px){
	h1{
		font-size: 60px
	}
}
@media screen and (max-width: 991px){
	h1{
		font-size: 80px
	}
}
@media screen and (max-width: 767px){
	h1{
		font-size: 60px
	}
}