body {
  font-family: "Open Sans", Calibri, sans-serif;
  margin: 1em auto;
  padding: 0;
  width: 100%;
  height: 100%;
}

header,
nav,
footer,
section,
article,
div {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  margin-top: 1em;
}

a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@font-face {
  font-family: "icomoon";
  src:url(../fonts/icomoon.eot?-ec79gs);
  src:url(../fonts/icomoon.eot?#iefix-ec79gs) format("embedded-opentype"),
    url(../fonts/icomoon.ttf?-ec79gs) format("truetype"),
    url(../fonts/icomoon.woff?-ec79gs) format("woff"),
    url(../fonts/icomoon.svg?-ec79gs#icomoon) format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

/*
  ========================= Header =========================
*/

header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 1em;
  border-bottom: solid medium #bcbbbb;
  margin-bottom: 2em;
}

.logo {
  color: white;
  font-size: 4em;
  font-weight: 800;
  letter-spacing: -0.15em;
  text-shadow: 0.1em .05em 0 black;
  text-align: center;
  width: 15%;
  order: 0;
}

.logo-bg {
  background-color: #f00;
  border-radius: 50%;
}

.heading {
  text-transform: uppercase;
  text-align: center;
  word-spacing: 0.4em;
  width: 85%;
  order: 1;
}

h1 {
  font-size: 2em;
  font-weight: 300;
  margin: 0 auto;
}

h2 {
  font-size: 1em;
  font-weight: 400;
  margin: 0 auto;
}

/*
  ========================= Main =========================
*/

.content {
  width: 100%;
}

.featured {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.featured h3 {
  color: #bcbbbb;
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 0.35em;
  width: 100%;
  order: 0;
}

.featured figure {
  margin: auto 0;
}

.featured figcaption {
  text-align: center;
}

.featured .caption-title {
  text-transform: uppercase;
  margin: 1.5em auto;
}

.featured .caption-link {
  font-size: 0.8em;
}

.column1,
.column2 {
  width: 100%;
}

/*
  ========================= Breakpoints =========================
*/

@media screen and (min-width: 30em) {
  .logo {
    font-size: 4em;
  }
  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 1.2em;
  }
  .featured h3 {
    font-size: 1.8em;
  }
  .featured .caption-title {
    font-size: 1.2em;
  }
}

@media screen and (min-width: 40em) {
  .logo {
    font-size: 6em;
  }
  h1 {
    font-size: 3.5em;
  }

  h2 {
    font-size: 1.5em;
  }
  
  .column1 {
    padding: 0 1em;
    width: calc((100% - 2em)/2);
    order: 1;
  }

  .column2 {
    padding: 0 1em;
    width: calc((100% - 2em)/2);
    order: 2;
  }
  
  .featured h3 {
    font-size: 2em;
  }
  .featured .caption-title {
    font-size: 1.4em;
  }
  .featured .caption-link {
    font-size: 1em;
  }
}

@media screen and (min-width: 50em) {
  header,
  footer,
  .content {
    width: 50em;
    margin-left: auto;
    margin-right: auto;
  }
}
