@keyframes fadeIn {
	from {
	opacity: 0;
	}
	to {
	opacity: 1;
	}
}
body, html {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	font-family: 'Playfair Display', serif;
}
.background {
	animation: fadeIn 2s ease-in-out;
	background-image: url('background.avif');
	background-size: cover;
	background-position: center;
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.background::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(1px);
}
.background h1 {
	position: relative;
	z-index: 1;
}
h1 {
	color: white;
	font-size: 5em;
	text-align: center;
	font-weight: 300;
	letter-spacing: 0.05em;
}
@media (max-width: 768px) {
	h1 {
		font-size: 2.5em;
	}
}