div,
span,
a,
i,
b,
button,
input,
select,
textarea,
section,
article,
header,
footer,
img,
picture,
ul,
li,
::before,
::after {
	box-sizing: border-box;
}

body,
html {
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	touch-action: manipulation;
	overflow-x: hidden;
	scrollbar-width: auto;
	scrollbar-color: #cfcfcf #0f0f0f;
}

body {
	margin: 0;
	font-family: "Momo Trust Display", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
	color: #909090;
	background-color: #0f0f0f;
	font-style: normal;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.body-container {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	overflow: hidden;
	isolation: isolate;
}

.body-container .bg {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	isolation: isolate;
}
.body-container .bg::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	transform: scale(1.1) translate(-50%, -50%);
	background: url(../images/tallinn.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0.1;
	left: 50%;
	top: 50%;
}

.body-container .content {
	position: relative;
	z-index: 1;
	max-width: 750px;
}

.title {
	font-size: 28px;
	font-size: calc(8vw);
	font-size: clamp(2rem, 8vw, 4rem);
	color: #fff;
	line-height: 1.5;
	margin: 20px 0;
}

.slogan {
	font-size: 18px;
	font-size: calc(2.5vw);
	font-size: clamp(0.7rem, 2.5vw, 1.2rem);
	color: rgba(255, 255, 255, 0.8);
	padding-bottom: 70px;
}

.address {
	position: absolute;
	padding: 0 20px;
	bottom: 30px;
	left: 50%;
	width: 100%;
	max-width: 800px;
	font-size: 14px;
	font-size: clamp(0.6rem, 2vw, 0.8rem);
	line-height: 1.3;
	transform: translateX(-50%);
}

.link {
	color: inherit;
	text-decoration: underline;
}
.link:hover {
	text-decoration: none;
}
