* {
	margin: 0; padding: 0;
	box-sizing: border-box;
}

html, body{
  height: 100%; width: 100%;
}

body {
	font-family: "Bricolage Grotesque", sans-serif;
	background-color: white;
	color: black;
	display: flex; justify-content: center; align-items: center;
	height: 100vh;
	text-align: center;
	overflow: hidden;
	margin: 0;
}
.logo {
	max-width: 500px; height: auto; width: 100%;
	margin-bottom: 20px; padding-left: 10px; padding-right: 10px;
}

.maintenance-wrapper {
	display: flex; flex-direction: column; align-items: center;
	height: 100%;
}
.maintenance-container {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

footer {
	padding: 20px;
}

footer p {
	font-size: calc(12px + (16 - 12) * ((100vw - 320px) / (1600 - 320)));
}

h1, h2 {
	font-family: "Bricolage Grotesque", sans-serif;
	color: black;
	margin-bottom: 10px;
}
h1 {
	font-weight: 700; font-size: calc(28px + (58 - 28) * ((100vw - 320px) / (1600 - 320)));
}
h2{
	font-weight: 500; font-size: calc(20px + (40 - 20) * ((100vw - 320px) / (1600 - 320)));
}

p {
	font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1600 - 320))); line-height: 1.6; font-weight: 300;
	margin-top: 10px; margin-bottom: 10px;
}

a {
    color: black;
    word-break: break-word;
}

@media (max-width: 600px) {
	h1 {
		font-size: 28px;
	}

	p {
		font-size: 16px;
	}
}

@media (min-width: 1600px) {
	h1 {
		font-size: 58px;
	}

	p {
		font-size: 22px;
	}
}
