.page {
	position: relative;
	font-family: "Albert Sans", sans-serif;
	background: url('../assets/bg.jpg');
	background-size: cover;
	background-position: center;
	height: 100vh;
	padding: 200px 0;
}
.logo {
	width: 125px;
	position: absolute;
	top: 64px;
	left: 50%;
	transform: translateX(-50%);
}
.title {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	font-size: 62px;
	line-height: 74px;
	font-weight: 500;
	color: #fff;
	text-transform: uppercase;
	padding: 18px;
	width: 100%;
	text-align: center;
}
.footer {
	background: #11151C;
	position: absolute;
	padding: 18px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px 36px;
	left: 0;
	bottom: 0;
	width: 100%;
}
.footer .desc {
	color: #979EAB;
	font-weight: 500;
	font-size: 12px;
	line-height: 14px;
	position: relative;
	text-align: center;
}
.footer .desc + .desc::before {
	content: '';
	width: 4px;
	height: 4px;
	background: #17C081;
	position: absolute;
	left: -20px;
	border-radius: 100%;
	top: 50%;
	transform: translateY(-50%);
}
.socials {
	position: absolute;
	left: 60px;
	top: 50%;
	transform: translateY(-50%);
}
.socials .img {
	width: 38px;
}
.socials a {
	display: block;
}
.socials a + a {
	margin-top: 32px;
}

@media screen and (max-width: 900px) {
	.title {
		font-size: 36px;
		line-height: 42px;
	}
	.logo {
		top: 32px;
	}
	.socials {
		display: flex;
		top: 90px;
		left: 50%;
		transform: translateX(-50%);
	}
	.socials a + a {
		margin-top: 0;
	}
	.footer .desc + .desc::before {
		display: none;
	}
}
footer .desc a {
	color: #979EAB;
}