:root {
	--bg: #ffffff;
	--text: #111111;
}

* {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
	background: var(--bg);
}

body {
	display: grid;
	place-items: center;
	font-family: "Montserrat", sans-serif;
	color: var(--text);
}

.wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4rem;
	text-align: center;
}

.logo {
	width: min(320px, 70vw);
	height: auto;
	display: block;
}

.message {
	margin: 0;
	font-size: clamp(1rem, 2.2vw, 1.35rem);
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
