html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font: normal 13px/1.8 'Open Sans', sans-serif;
  background-color: #f3f3f4;
  color: #676a6c;
}

img {
  border-radius: 3px;
}

hr {
  border-top: 1px solid #eee;
  margin: 20px 0;
}

h1,
h2 {
  margin: 10px 0 0 0;
}

h1 {
  font-size: 26px;
}

h2 {
  font-size: 16px;
}

blockquote {
  background: #f9f9f9;
  border-left: 10px solid #2f4050;
  margin: 20px;
  padding: 5px 20px;
  quotes: "\201C""\201C";
  position: relative;
  text-align: left;
}

blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 25px;
  position: absolute;
  top: 0;
  left: 8px;
}

a:link,
a:visited {
  text-decoration: underline;
  color: #2f4050;
}

a:hover,
a:active {
  text-decoration: none;
  color: #a7b1c2;
}

.footer {
  font-size: 11px;
}

.flex {
  display: flex;
}

.flex-justify--space-between {
  justify-content: space-between;
}

.flex-align--start {
  align-items: flex-start;
}

.container {
  max-width: 80%;
  margin: 20px auto;
}

.box {
  border-top: 2px solid #e7eaec;
  padding: 40px 30px;
  background-color: #fff;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.centered {
  text-align: center;
}

.button {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 12px;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-color: #2f4050;
  white-space: nowrap;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
}

.button,
.button:link,
.button:visited {
  color: #fff;
  text-decoration: none;
}

.button + .button {
  margin-left: 10px;
}

.button:hover,
.button:focus,
.button:active {
  background-color: #293846;
  color: #a7b1c2;
}

.secondary {
  background-color: #f3f6fb;
}

.main {
  width: 67%;
  margin-right: 20px;
}

.side {
  width: 33%;
  font-size: 11px;
}

@media screen and (max-width: 600px) {
  .side,
  .main {
    width: 100%;
    margin: 0;
  }

  .wrapper {
    flex-direction: column;
  }

  .container {
    max-width: 90%;
  }

  .side {
    margin-top: 20px;
  }
}
