@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: 14px;
	background-color: #000000;
	color: #ffffff;
	background-position: center top;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 400;
	letter-spacing: -0.05em;


}
.bg{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-image: url("background-desktop.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0.5;
}
.content{
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	transform: translateX(-50%) translateY(-50%);
    width: 100%;
    max-height: 100vh;
    padding: 120px 0;
    overflow: auto;

}
.logo{
	display: block;
	position: relative;
	width: 10vw;
	height: auto;
	min-width: 200px;
	margin: auto;
	cursor: pointer;
    margin-bottom: 40px;
    margin-top: 40px;
}
.logo img{
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}
.title{
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #ffffff;
	font-size: 70px;
	margin: 0;
	margin-bottom: 40px;
}
p{
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}
.button{
	display: inline-block;
	width: auto;
	min-width: 120px;
	height: 50px;
	line-height: 50px;
	border-radius: 3px;
	padding: 0px 30px;
	background-color: #ffffff;
	border: 1px solid #ffffff;
	color: #000000;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	cursor: pointer;
	text-decoration: none;
	opacity: 1;
	margin: 0 5px;
	margin-bottom: 10px;
	transition: all 300ms ease-out;
}
.button:hover{
	background-color: #000000;
	color: #ffffff;
	border: 1px solid #000000;
	text-decoration: none;
}
.link{
  color: #ffffff;
  text-align: center;
	font-size: 12px;
	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;
	}
	.bg{
		opacity: 0.75;
		background-image: url("background-mobile.jpg");
	}
	.content{
		position: relative;
		padding-top: 160px;
		padding-bottom: 160px;
		left: initial;
		transform: none;
		margin: auto;
	}
	.button{
		margin-bottom: 10px;
	}
}