html {
	font-family: sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: content-box;
	font-size: 1em;
	font-weight: normal;
}

b { font-weight: bold; }

body {
	background-color: lightblue;
}

h1 {
	font-weight: 900;
	font-size: 4.5em;
}

h2 {
	font-weight: 900;
	font-size: 2.5em;
	margin-bottom: .5em;
}

h3 {
	font-weight: 900;
	font-size: 1.2em;
	margin-bottom: .5em;
}

a {
	text-decoration: none;
	color: black;
}

a:visited {
	color: darkblue;
}

a:hover {
	text-decoration: underline;
}

#welcoming {
	padding: 10px;
	height: 80vh;
	vertical-align: bottom;
	position: relative;
}

#welcoming img {
	transform: scaleX(-1);
	max-width: 50vh;
	position: absolute;
	right: 0;
	bottom: 0;
}

#sitewide-nav {
	background-color: white;
}

#sitewide-nav a {
	display: inline-block;
	padding: 20px;
	font-size: 1em;
}

#sitewide-nav a:hover {
	background-color: hsl(194, 53%, 98%);
}

.sitewide-content {
	padding: 20px;
	padding-top: 0;
	background-color: white;
}

.area {
	margin-bottom: 20px;
}

.area h2 {
	color: #222;
	font-weight: 700;
	margin-bottom: 5px;
}

.area p {
	margin-bottom: 5px;
}

#footer {
	padding: 20px;
}

#footer ul {
	list-style: none;
}

#footer ul li {
	padding: 5px;
}

@media (max-width: 777px) {
	#footer {
		text-align: center;
	}
}