.content {
  overflow-y: auto;
}

.content .navigation {
  width: 100%;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  background-color: white;
}

.content .navigation ul {
  list-style-type: none;
  padding: 0;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content .navigation li {
  float: left;
}

.content .navigation li a {
  color: black;
  display: block;
  text-align: center;
  padding: 15px;
  text-decoration: none;
}

.content .navigation--dark {
  background-color: #181a1b;
}

.content .navigation--dark li a {
  color: #e8e6e3;
}

.content .main {
  padding-left: 15px;
  padding-right: 15px;
}

.content--dark {
  background-color: #202324;
  color: #e8e6e3;
}

@media only screen and (min-width: 640px) {
  .content {
    grid-area: content;
  }
  .content .navigation ul {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin: 0;
  }
  .content .main {
    padding: 15px;
  }
}

@media only screen and (min-width: 1200px) {
  .main--center {
    width: 90%;
    margin: auto;
  }
}
/*# sourceMappingURL=content.css.map */