@font-face {
    font-family: 'Maragsa Display';
    src: url('fonts/MaragsaDisplay.eot');
    src: url('fonts/MaragsaDisplay.eot?#iefix') format('embedded-opentype'),
        url('fonts/MaragsaDisplay.woff2') format('woff2'),
        url('fonts/MaragsaDisplay.woff') format('woff'),
        url('fonts/MaragsaDisplay.ttf') format('truetype'),
        url('fonts/MaragsaDisplay.svg#MaragsaDisplay') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


html,
body {
	-webkit-font-smoothing: antialiased;
	font-weight: 400;
	width: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	font-size: 18px;
	background-color: #000000;
	color: #ffffff;
	background-position: center top;
	font-family: 'Inter', Helvetica, Arial, sans-serif;
	font-weight: 400;
	letter-spacing: -0.05em;
	    	background-image: url("background.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat

}
.content{
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	transform: translateX(-50%) translateY(-50%);
    width: 100%;
    max-width: 80vw;

}
.logo{
	display: block;
	position: relative;
	width: 10vw;
	height: auto;
	min-width: 200px;
	margin: auto;
	cursor: pointer;
	margin-bottom: 40px;
}
.logo img{
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}
.title{
	font-family: 'Maragsa Display';
	color: #ffffff;
	font-size: 70px;
	margin: 0;
	margin-bottom: 40px;
}
p{
	color: #ffffff;
  text-align: center;
  font-size: 22px;
  letter-spacing: -0.08em;
  transform: scaleX(0.9) scaleY(1.1);
}
.button{
	display: inline-block;
	width: auto;
	height: 50px;
	line-height: 50px;
	border-radius: 50px;
	padding: 0px 30px;
	background-color: transparent;
	border: 2px solid #ffffff;
	color: #ffffff;
	font-size: 22px;
	cursor: pointer;
	text-decoration: none;
	opacity: 1;
	margin: 0 5px;
	transition: all 300ms ease-out;
}
.button:hover{
	opacity: 0.5;
	text-decoration: none;
}

@media all and (max-width: 768px){
	.logo{
		position: relative;
		width: 60vw;
		margin: auto;
		margin-bottom: 40px;
	}
	.title{
		font-size: 60px;
	}
	.content{
		position: relative;
		padding-top: 50px;
		padding-bottom: 50px;
		left: initial;
		transform: none;
		margin: auto;
	}
	.button{
		margin-bottom: 10px;
	}
}