@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=Unna&display=swap');

* {
	margin:0;
	padding:0;
	box-sizing: border-box;
	font-size: 20px;
	font-family: "Geist", sans-serif;
}

a {
	color: maroon;
	cursor: pointer;
	font-weight: bold;
}

html, body {
	display: flex;
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	background-color: bisque;
	align-items: center;
}

section {
	width: 50%;
	max-width: 940px;
	background-color: white;
	padding: 7rem 10rem 10rem;
	text-align: center;
	border-radius: 2rem;
	margin: 0 auto;
	border: 2px solid black;
}

section h1 {
	font-size: 3rem;
	font-family: "Unna", serif;
}

section hr {
	margin: 1rem auto;
}

section ul {
	display: flex;
	list-style: none;
	gap: 1rem;
	justify-content: center;
}
