body {
  background: #0c5a72;
  color: white;
  font-family: sans-serif;
  font-size: 0.875em;
  margin: 0;
}

center {
  text-align: center;
}


/* Contains everything */
.wrapper {
  width: 1150px;
  background: #12282f;
  margin: 0 auto;
  margin-top: -10px;
  margin-bottom: -10px;
}


/* Contains main and sidebar divs */
.wrapper-2 {
  position: relative;
}


/* Header and footer images */
.header,
.footer {
  height: 200px;
  overflow: hidden;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.15)
    ),
    url("https://i.imgur.com/glWla8v.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer {
  height: 50px;
}

.header img {
  border-top: 0;
}


/* Big title at the top */
.title {
  padding: 15px 10px 10px 20px;
  text-align: center;
}

.title h1,
.title h2,
.title h3 {
  padding: 0;
  margin: 0;
}


/* Top row of links */
.links {
  padding: 5px;
  padding-top: 3px;
  padding-bottom: 5px;

  text-align: center;
}


/* Individual links */
.link {
  text-align: center;
  display: inline-block;

  list-style-type: none;

  font-weight: bold;
  font-size: 1.16em;

  padding: 5px;

  margin-right: 10px;
  margin-left: 10px;
}

.link a {
  color: white;
  text-decoration: none;
}

.link a:hover {
  text-decoration: underline;
}


/* Main columns */
.main,
.sidebar-right {
  display: inline-block;
}

.sidebar-left,
.sidebar-right {
  width: 200px;

  position: absolute;

  top: 0;
}

.sidebar-left {
  margin-left: 10px;
}

.main {
  margin-left: 220px;
  width: 710px;
}

.sidebar-right {
  margin-right: 10px;
  margin-left: 10px;
}


/* Individual boxes */
.box {
  padding: 5px 10px 0 10px;

  background: #e2dcc1;
  color: #12282f;

  border-top: 5px solid #187b9b;
  border-bottom: 5px solid #187b9b;

  margin: 10px 0 15px 0;
}

.box img {
  max-width: 100%;
  height: auto;
}


/* Box interior */
.inner {
  padding-bottom: 5px;
}


/* General text */
p {
  line-height: 1.7;
}

a {
  color: #187b9b;
}

h1,
h2,
h3 {
  line-height: 1.4;
}


/* Date styling */
.date {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Seal */
.seal {
  display: inline-block;

  padding: 7px 10px;

  background: #a74638;
  color: white;

  font-size: 18px;
}


/* Medium screens */
@media (max-width: 1180px) {

  .wrapper {
    width: calc(440px + 50vw);
  }

  .main {
    width: 50vw;
  }

}


/* Smaller desktop screens */
@media (max-width: 910px) {

  .wrapper {
    width: calc(360px + 52vw);
  }

  .sidebar-left,
  .sidebar-right {
    width: 160px;
  }

  .main {
    margin-left: 180px;
    width: 52vw;
  }

}


/* Mobile */
@media (orientation: portrait) {

  .wrapper {
    width: 96vw;
    margin: 0 auto;
    padding: 0;

    position: relative;
  }

  .wrapper-2 {
    width: 94vw;
    margin: 0 auto;
    padding: 0;

    position: relative;
  }

  .sidebar-left,
  .main,
  .sidebar-right {
    position: relative;

    width: 92vw;

    margin: 0.25rem 1vw;
  }

  .sidebar-left,
  .sidebar-right {
    font-size: 0.95em;
  }

}