@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
}

html {
  height: 100%;
}

img.hover-image {
  position: absolute;
  right: -5%;
  height: 100%;
  z-index: -1;
}

.hover-image {
  opacity: 0%;
  -webkit-transition: opacity .25s;
  transition: opacity .25s;
  -webkit-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
}

body {
  overflow: hidden !important;
  position: relative;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}

header {
  margin: auto auto auto 0;
  width: 100%;
  padding: 1em 0;
}

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

#nav-about button:active, #nav-about button:visited, #nav-about button:hover {
  background-color: rgba(69, 142, 161, 0.5);
  color: white;
}

#nav-work button:active, #nav-work button:visited, #nav-work button:hover {
  background-color: rgba(69, 142, 161, 0.6);
  color: white;
}

#nav-blog button:active, #nav-blog button:visited, #nav-blog button:hover {
  background-color: rgba(69, 142, 161, 0.7);
  color: white;
}

#nav-contact button:active, #nav-contact button:visited, #nav-contact button:hover {
  background-color: rgba(69, 142, 161, 0.8);
  color: white;
}

#image-wrapper {
  padding: 0;
}

#logo {
  width: 100%;
}

#content-wrapper {
  width: 100%;
  color: #444444;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1.2em auto;
}

#content-wrapper #tagline {
  font-size: 1.5em;
  font-weight: bold;
  text-transform: uppercase;
}

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

.gradient-teal {
  background-image: -webkit-gradient(linear, left top, right bottom, from(#ffffff), to(rgba(69, 142, 161, 0.8)));
  background-image: linear-gradient(to bottom right, #ffffff, rgba(69, 142, 161, 0.8));
}

@media (orientation: landscape) {
  #image-wrapper {
    margin: 0 25%;
  }
  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: #999999 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: #999999 solid 1px;
  }
  .nav-item:last-child {
    border: none;
  }
}
/*# sourceMappingURL=landing.css.map */