@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Josefin+Slab:ital,wght@0,100..700;1,100..700&display=swap');

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


body {
	width: 100dvw;
	height: 100dvh;

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 1rem;

	background-color: #f4ebe1;
	color: #3c2a21;

	text-align: center;

	font-family: "EB Garamond", serif;
}


h1 {
	font-size: 12rem;
	line-height: 1;
	letter-spacing: 2px;
	font-weight: 700;

	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

p {
	font-family: "Josefin Slab", serif;

	font-size: 2rem;
	letter-spacing: 1.2px;
	font-weight: 400;
	line-height: 1.2;
}