@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic,700,700italic,800,800italic&subset=latin,latin-ext');

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

body {
  margin: 0;
  padding: 0;
  background-color: #000080;
  color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  font-weight: 400;
}

a, a:visited {
  color: #1e73be;
  text-decoration: none;
}

a:hover, a:focus, a:active {
  color: #000000;
}

.container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ── Header ── */

.site-header {
  background-color: #000080;
  text-align: center;
  padding: 30px;
}

.site-title {
  margin: 0;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.2;
}

.site-title a,
.site-title a:hover,
.site-title a:visited {
  color: #ffffff;
  text-decoration: none;
}

.site-description {
  margin: 5px 0 0;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 20px;
  color: #ffffff;
}

/* ── Navigation ── */

nav {
  background-color: #000080;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

nav ul li a {
  display: block;
  color: #ffffff;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 15px;
  font-weight: 200;
  padding: 0 20px;
  line-height: 60px;
  text-decoration: none;
  white-space: nowrap;
}

nav ul li a:hover,
nav ul li.current a {
  color: #ffffff;
  background-color: #000000;
}

/* ── Content ── */

main {
  margin: 20px 0;
}

.content-box {
  background-color: #ffffff;
  color: #000080;
  padding: 20px;
  overflow: hidden;
}

.content-box a,
.content-box a:visited {
  color: #1e73be;
}

.content-box a:hover {
  color: #000080;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Verdana, Geneva, sans-serif;
  color: #000080;
}

h1 { font-size: 20px; font-weight: normal; }
h2 { font-size: 25px; font-weight: normal; }
h3 { font-size: 25px; font-weight: normal; }

.page-title {
  margin-top: 0;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 20px;
  font-weight: normal;
  color: #000080;
}

img {
  max-width: 100%;
  height: auto;
}

.alignleft {
  float: left;
  margin-right: 15px;
  margin-bottom: 10px;
}

.alignright {
  float: right;
  margin-left: 15px;
  margin-bottom: 10px;
}

.aligncenter {
  display: block;
  margin: 0 auto 10px;
}

/* ── Footer ── */

.site-footer {
  background-color: #000080;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.site-footer a,
.site-footer a:visited {
  color: #ffffff;
}

/* ── Mobile ── */

@media (max-width: 650px) {
  .site-title {
    font-size: 36px;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li a {
    line-height: 44px;
    text-align: center;
    white-space: normal;
  }
}
