* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Plus Jakarta Sans', sans-serif;
}

:root {
	--main-color: #0080e5;
}

body {
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 48px;
}

.bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.logo {
	width: clamp(200px, 70%, 800px);
}

h1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 2.5rem;
	text-align: center;
}

p,
form * {
	font-size: 1.5rem;
}

form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

form input,
form button {
	width: 100%;
	padding: 8px 16px;
	border-radius: 6px;
}

form input {
	background-color: #ededed;
	border: 0.5px solid #b1b1b1;
}

form button {
	background-color: var(--main-color);
	border: 0.5px solid #b1b1b1;
	color: white;
	cursor: pointer;
}

.preparing {
	font-weight: 500;
}

.follow-us {
	font-weight: 500;
	font-size: 2rem;
	width: 600px;
	text-align: center;
	max-width: 95%;
	display: flex;
	flex-direction: column;
}

.follow-us a {
	color: var(--main-color);
	text-decoration: none;
	font-weight: 700;
}

form button:hover,
.follow-us a:hover {
	filter: brightness(110%) contrast(110%);
}

@media only screen and (max-width: 768px) {
	html {
		font-size: 14px;
	}
}

@media only screen and (max-width: 500px) {
	html {
		font-size: 12px;
	}
}
