* {
	margin: 0;
	padding: 0;
	font-family: Times;
}

body {
	background-color: #02182c;
	color: #fff3d6;
	display: flex;
	flex-direction: column;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1em 2em;
}

header #description {
	text-transform: uppercase;
	text-align: center;
	margin-right: 2em;
	font-style: italic;
}

header #description p:nth-child(2) {
	font-size: 14px;
}

header #name {
	font-size: 20px;
}

@media (max-width: 575.98px) {
	header {
		flex-direction: column;
	}

	header > *:not(:last-child) {
		margin-bottom: 1em;
	}
	
	header #description {
		margin-right: 0;
	}
}


nav {
	background-color: #fff3d6;
	padding: 0.5em 0;
	position: sticky;
	top: 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

nav ul
{
	display: flex;
	justify-content: space-around;
	align-items: center;
}

nav li
{
	list-style-type: none;
}

nav li a
{
	text-decoration: none;
	color: #3465a4;
}

nav li #current,
nav li a:hover
{
	text-decoration: underline;
}

@media (max-width: 575.98px) {
	nav {
		position: initial;
	}

	nav ul {
		flex-direction: column;
	}

	nav li a {
		text-align: center;
	}
}


main {
	margin: 2em 0;
}

.small-capital {
	display: block;
	text-transform: uppercase;
}

.small-capital::first-letter {
	font-size: 1.3em;
}

.light-section {
	background-color: #fff3d6;
	color: black;
}

section .title,
.light-section .title {
	color: #3465a4;
	font-style: italic;
	font-size: initial;
	display: block;
}

@media (max-width: 575.98px) {
	section {
		flex-direction: column;
	}

	section .content {
		max-width: initial !important;
		padding: 1em 2em !important;
	}
	
	section img {
		width: 100% !important;
	}
}


footer {
	text-align: center;
}

footer a {
	text-decoration: none;
	color: #fff3d6;
}