html,
body {
	padding: 0;
	margin: 0;
	font-family: 'Roboto';
	font-style: normal;
	font-size: 24px;

	color: #ffffff;
	background: #000;
	font-family: 'Roboto', sans-serif;
}

a {
	color: inherit;
	text-decoration: none;
}

* {
	box-sizing: border-box;
}

:root {
	--primary: #ffffff;
	--primary-hover: #ffffff;
	--black: #000000;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;

	background: url(/images/backgrnd.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position-x: center;
	background-position-y: bottom;
}

.header {
	grid-area: header;
}

.body {
	display: flex;
	flex-direction: column;
	flex: 1;
	align-items: center;
	justify-content: center;
	grid-area: body;
}

.description {
	margin: 50px;
	padding: 20px 30px;
	text-align: center;

	/* border: 1px solid #ffffff; */

	width: 75%;

	font-size: ;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(2px);

	border-radius: 15px;
}

.footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 50px 30px;
	/*
  justify-content: space-between;
  */
	gap: 10px;

	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.soon {
	font-weight: 500;
	font-size: 96px;
	line-height: 112px;
}

.contact {
	display: flex;
	flex-direction: row;
	align-items: center;

	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
}

@media (max-width: 600px) {
	.description {
		width: 90%;
	}

	.footer {
		flex-direction: column;
		align-items: center;
		gap: 5px;
	}
}
