html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	background: url("background.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

body::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: -1;
	backdrop-filter: blur(3px);
}

h1 {
	color: white;
	font-family: sans-serif;
	font-size: 15vw;
	margin: 0;
}
