* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font: 500 14px 'Urbanist', sans-serif;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.area__inner {
	color: #fff;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	text-align: center;
}

.area__logo {
	display: block;
	width: fit-content;
	margin: 0 auto 13px;
}

@media (max-width: 767px) {
	.area__title {
		max-width: 313px;
		font-size: 45px;
	}
}

.area__title {
	text-align: center;
	font-size: 70px;
	max-width: 480px;
}

.area__bottom {
	width: fit-content;
	margin: 13px auto 48px;
	position: relative;
}

.area__bottom::after {
	content: "";
	position: absolute;
	right: -8px;
	top: -2px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #90ee90;
}

.area__img {
	margin: auto;
	display: block;
	width: 288px;
	height: 201px;
}

@font-face {
	font-family: Urbanist;
	src: url("./fonts/Urbanist-Medium.woff2") format("woff2"), url("fonts/Urbanist-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: Urbanist;
	src: url("./fonts/Urbanist-Bold.woff2") format("woff2"), url("fonts/Urbanist-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}