* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
}

body {
  height: inherit;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-attachment: fixed;
  margin: 0;
}

header {
  margin: 0 auto auto;
  width: 100%;
  padding: 1em 0;
  position: fixed;
  -webkit-filter: drop-shadow(6px 6px 6px #00000075);
          filter: drop-shadow(6px 6px 6px #00000075);
  top: 0;
}

button {
  border: none;
  background-color: rgba(255, 255, 255, 0);
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: bold;
  color: #e0e0e0;
  width: 100%;
  cursor: pointer;
  padding: .75em 0;
}

#logo {
  max-height: 10em;
  width: 100%;
}

#nav-list {
  display: -ms-grid;
  display: grid;
  margin: auto;
  list-style-type: none;
  width: 80%;
}

#content-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 20%;
  font-size: 2em;
  top: 25%;
  z-index: -1;
}

@media (orientation: landscape) {
  nav {
    margin: 0;
  }
  #nav-list {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
  }
  .nav-item {
    border-right: #e0e0e0 solid 1px;
  }
  .nav-item:last-child {
    border: none;
  }
}

@media (orientation: portrait) {
  header {
    margin: 36.5% auto auto;
  }
  #image-wrapper {
    margin: 0 10%;
  }
  nav {
    margin: 0 30%;
  }
  #nav-list {
    -ms-grid-rows: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .nav-item {
    border-bottom: #e0e0e0 solid 1px;
  }
  .nav-item:last-child {
    border: none;
  }
}

#nav-about button:active, #nav-about button:visited, #nav-about button:hover {
  background-color: #458ea1;
  color: #eeeeee;
}

#nav-work button:active, #nav-work button:visited, #nav-work button:hover {
  background-color: #ffffff50;
  color: #eeeeee;
}

#nav-blog button:active, #nav-blog button:visited, #nav-blog button:hover {
  background-color: #ffffff50;
  color: #eeeeee;
}

#nav-contact button:active, #nav-contact button:visited, #nav-contact button:hover {
  background-color: #ffffff50;
  color: #eeeeee;
}

.gradient {
  background-image: -webkit-gradient(linear, left top, right bottom, color-stop(30%, #458ea1), color-stop(120%, #33474d));
  background-image: linear-gradient(to bottom right, #458ea1 30%, #33474d 120%);
}
/*# sourceMappingURL=about.css.map */