body, html {
	margin: 0;
	padding: 0;
}

body {
	background: url('background.jpg');
	background-size: cover;
	background-position-x: center;
	background-position-y: 50%;
	font-family: "Montserrat", sans-serif;
}

main {
	display: flex;
	width: 100%;
	height: 100vh;
	justify-content: center;
	align-items: center;
}

main h1 {
	margin: 0;
	font-weight: 800;
	font-size: min(110px, 10vw);
	position: relative;
}

main h1 span {
	position: absolute;
	font-size: min(30%, 2vw);
	text-transform: uppercase;
	font-weight: 400;
	top: 10px;
}

footer {
	position: absolute;
	bottom: 15px;
	display: flex;
	width: 100%;
	justify-content: center;
}

footer addr {
	color: white;
	mix-blend-mode: difference;
}