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

body {
	height: 100dvh;
	width: 100dvw;
	overflow-x: clip;
}

header,
main,
footer {
	width: 100%;
	margin: 0 auto;
}

/* Header */
header {
	max-height: 10rem;
	max-width: 800px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#logo,
#building {
	height: auto;
	width: 50%;
}

#tagline {
	height: auto;
	width: 100%;
}

/* Main */
main {
	max-width: 800px;
}

section {
	width: 90%;
	margin: 2rem auto;
}

h1 {
	font-size: 1.5rem;
}

ul {
	list-style-type: none;
}

/* Footer */
footer {
	padding: 1rem 0;
	text-align: center;
	background-color: #f1f1f1;
	position: fixed;
	bottom: 0;
}
