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: 14vw;
	height: auto;
	min-width: 200px;
	margin: auto;
	cursor: pointer;
	margin-bottom: 60px;
}
.logo img{
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}
.title{
    font-family: 'Inter';
    width: 990px;
    max-width: 100%;
    color: #ffffff;
    font-size: 40px;
    margin: 0 auto;
    margin-bottom: 40px;
    text-transform: uppercase;
    transform: scaleY(1.4);
    line-height: 1;
	  background: -webkit-linear-gradient(#00bebd, #ff9629);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    margin-bottom: 60px;
}
p{
  color: #ffffff;
  text-align: center;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.button{
	display: inline-block;
	width: auto;
	height: 50px;
	line-height: 50px;
	border-radius: 0px;
	padding: 0px 30px;
	background-color: transparent;
	border: 2px solid #ffffff;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -0.02em;
	cursor: pointer;
	text-decoration: none;
	text-transform: uppercase;
	opacity: 1;
	margin: 0 5px;
	transition: all 300ms ease-out;
}
.button:hover{
	opacity: 0.5;
	text-decoration: none;
}
.links{
	margin-top: 60px;
}
.links .link{
  color: #ffffff;
  text-align: center;
	font-size: 13px;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.04em;
  border-bottom: 1px solid #ffffff;
}
@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;
	}
}