html {
	unset: all;
}

body {
	display: flex;
	align-items: flex-start;
	margin: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	color: #fff;
	font-size: 20px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	text-align: center;
	line-height: 1.5;
	background-color: #202020;
	background-image: url('coming-soon-bg.webp');
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	box-sizing: border-box;
}

body:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
	opacity: 0.5;
}

.text-script {
	font-family: 'Meow Script', cursive;
}

.container {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 48px auto;
	padding: 0 16px;
	width: 100%;
	max-width: 1440px;
}

.content {
	margin-bottom: 32px;
	max-width: 720px;
}

.footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 16px;
	font-size: 16px;
	text-align: center;
}

h1 {
	margin: 0;
	color: #fff;
	font-family: 'Gabarito', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
}

h1 span {
	position: relative;
	top: -8px;
	left: -0.05em;
	display: block;
	font-family: 'Meow Script', cursive;
	font-size: 2em;
	font-weight: normal;
	line-height: 1;
}

@media (min-width: 768px) {
	body {
		align-items: center;
		padding: 48px;
		font-size: 24px;
		text-align: left;
		background-position: center left;
	}

	body:before {
		background: none;
	}

	h1 span {
		display: inline-block;
		top: initial;
	}

}