.desktop {
	display: none;
}

:root {
	--app-height: 100%;
}
html,
body {
	padding: 0;
	margin: 0;
	overflow: hidden;
	width: 100vw;
	height: 100vh;
	height: var(--app-height);
}

body {
	box-sizing: border-box;
	padding: 30px 22px 50px;
	background-color: #1A1A1A;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}

header {
	display: flex;
	justify-content: space-between;
	z-index: 1;
}
header .right {
	font-size: 0;
}
header .right a {
	margin-left: 28px;
}
header .right a:first-of-type {
	margin-left: 0;
}
main {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 32px auto;
	z-index: 1;
}
.logo-text {
	margin: 42px auto 36px;
}
footer {
	display: flex;
	justify-content: center;
	z-index: 1;
}
footer img {
	margin-right: 12px;
}
footer p {
	color: #fff;
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	line-height: 15px;
	letter-spacing: 0.03em;
}
footer a {
	color: #FFF124;
}
video {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}

@media (max-width: 768px) {
	header .left img {
		height: 24px;
		width: auto;
	}
	header .right img {
		height: 21px;
		width: auto;
	}
}

@media (max-width: 768px) and (max-height: 670px) {
	body {
		min-height: initial;
		padding-bottom: 30px;
	}
	main {
		margin: 16px auto;
	}
	main img:first-child {
		width: 166px;
	}
	.logo-text {
		margin: 30px auto;
	}
}

@media (min-width: 961px) {
	.desktop {
		display: block;
	}
	.mobile {
		display: none;
	}
	body {
		padding: 96px 66px;
		justify-content: center;
	}
	header {
		position: absolute;
		width: calc(100% - 132px);
		top: 96px;
	}
	header .left img {
		width: 244px;
	}
	header .right img {
		margin-bottom: 30px;
	}
	main {
		margin-top: 0;
	}
	footer {
		position: absolute;
		bottom: 96px;
		left: 0;
		right: 0;
		margin: auto;
	}
}