.dark #sec4 {
  background-color: #141414;
}

.dark .drawer-option {
  color: #eeeeee;
}

.dark #nav {
  background-color: #141414;
  opacity: 0.9;
  border-bottom: 1px solid #575757;
}

.dark #nav .theme-toggle.light {
  display: none;
}

.dark #nav #harkerdev {
  color: #ececec;
}

.dark #nav #sec2 > .nav-option {
  color: #eeeeee;
  font-weight: 100;
}

.dark #nav #sec3 #github-button {
  color: #ececec;
  border-color: #575757;
}

.light #sec4 {
  background-color: white;
}

.light .drawer-option {
  color: black;
}

.light #nav {
  background-color: white;
  opacity: 0.9;
  border-bottom: 1px solid #eeeeee;
}

.light #nav .theme-toggle.dark {
  display: none;
}

.light #nav #harkerdev {
  color: black;
}

.light #nav #sec2 > .nav-option {
  color: black;
  font-weight: 100;
}

.light #nav #sec3 #github-button {
  color: black;
  border-color: #eeeeee;
}

#nav {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.9em;
  position: fixed;
  top: 0;
  padding: 20px 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.9);
}

#nav #sec1 {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

#nav #sec1 #sec0 {
  margin-right: 50px;
}

@media (min-width: 1024px) {
  #nav #sec1 #sec0 {
    display: none;
  }
}

@media (max-width: 600px) {
  #nav #sec1 #sec0 {
    margin-right: 30px;
  }
}

#nav #sec1 #logo {
  height: 4vh;
  float: left;
}

#nav #sec1 #harkerdev {
  font-weight: 900;
  margin-left: 8px;
  display: inline-block;
}

@media (max-width: 600px) {
  #nav #sec1 #harkerdev {
    display: none;
  }
}

#nav #sec2 {
  text-align: center;
}

#nav #sec2 .nav-option {
  margin: auto 20px !important;
  cursor: pointer;
}

@media (max-width: 1024px) {
  #nav #sec2 {
    display: none;
  }
}

#nav #sec3 {
  text-align: right;
}

#nav #sec3 #github-button {
  padding: 10px 15px;
  border-style: solid;
  border-width: 1px;
  margin-right: 20px;
  border-radius: 10px;
  cursor: pointer;
}

#nav #sec3 .theme-toggle {
  float: right;
  cursor: pointer;
}

#sec4 {
  z-index: 3;
  position: fixed;
  padding: 30px;
  top: 0;
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
  left: -100%;
  height: 100vh;
}

#sec4 #drawerClose {
  cursor: pointer;
}

#sec4 .drawer-option {
  margin: 30px 10px;
  cursor: pointer;
  display: block;
}

#sec4 .drawer-option:hover {
  text-decoration: underline;
}

#sec4.open {
  left: 0;
}
/*# sourceMappingURL=nav.css.map */