html,
body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1 {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #cb2c1e;
	font-size: 36pt;
	font-style: italic;
	font-weight: 400;
	margin: 0;
	text-transform: lowercase;
}

h2 {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #cb2c1e;
	font-style: italic;
	font-size: 24pt;
	font-weight: 500;
	text-transform: lowercase;

}

a,
a:visited {
	color: #333;
	font-style: italic;
	text-decoration: none;
}

a:hover {
	color: #b88a14;
}

img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 3px solid #f5f5f5;
	object-fit: cover;
}

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0;
	background-color: #ffffff;
}

p {
	line-height: 1.6;
	font-size: 14pt;
	color: #555;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 400;
}

#container {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

#jennifer {
	background-color: #f5f5f5;
	padding: 2em 1.25em;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.5em;
}

#navigation {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 0.5em;
}

#navigation a {
	padding: 0.5em;
	display: block;
}

#navigation a:hover {
	color: #b88a14;
}

#content {
	padding: 2em 1.25em;
	flex: 1;
	display: flex;
	justify-content: center;
}

#centered-content {
	padding: 2em 1.25em;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

#main-content {
	max-width: 800px;
	width: 100%;
	display: flex;
	text-align: center;
	flex-direction: column;
	align-items: center;
	gap: 1em;
}

#go-tos-content {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1em;
}

#city {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1em;
}

#back {
	padding-bottom: 2em;
}

ol {
	text-align: left;
}

/* Desktop layout */
@media screen and (min-width: 47.5em) {
	#container {
		flex-direction: row;
		height: 100vh;
	}

	#jennifer {
		width: 26em;
		min-width: 26em;
		height: 100vh;
		position: fixed;
		left: 0;
		top: 0;
		overflow-y: auto;
	}

	#content {
		margin-left: 26em;
		width: calc(100% - 26em);
		height: 100vh;
		overflow-y: auto;
		padding: 2em;
	}

	#centered-content {
		margin-left: 26em;
		width: calc(100% - 26em);
		height: 100vh;
		overflow-y: auto;
		padding: 2em;
	}

	#main-content {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 1em;
	}

	#navigation {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 1em;
	}

	#navigation a {
		padding: 0.5em 1em;
	}

}