@charset "UTF-8";
@font-face {
  font-family: "Cutive Mono";
  src: url("../font/CutiveMono.woff");
}
@font-face {
  font-family: "AxoBook";
  src: url("../font/Axo-Book.woff");
}
/* VARS */
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "AxoBook", sans-serif;
  font-size: 16px;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #003ce6;
}

a {
  text-transform: none;
  color: #003ce6;
  text-decoration: none;
  -webkit-transition: color 0.1s;
  -ms-transition: color 0.1s;
  -moz-transition: color 0.1s;
  -o-transition: color 0.1s;
  transition: color 0.1s;
}
a:hover {
  border-bottom: 2px solid #003ce6;
}

hr {
  border: 0.1px solid #003ce6;
}

#wrapper {
  max-width: 100%;
  margin: 0 auto;
}

#navigation {
  position: fixed;
  top: 0;
  padding: 38px 0 0 0;
  margin: 0 auto;
  z-index: 99;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: normal;
  padding: 0 5%;
  box-sizing: border-box;
}
#navigation .nav-item {
  list-style: none;
  margin: 0.83em 0;
}
#navigation .nav-item:nth-child(2) {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#navigation a {
  color: #003ce6;
}
#navigation a:hover {
  color: #003ce6;
  border-bottom: 2px solid #003ce6;
}
#navigation .active {
  color: #003ce6;
  border-bottom: 2px solid #003ce6;
}
#navigation #sitetitle .active {
  color: white;
  border-bottom: none;
}

.press {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.press a:after {
  content: " ⤴︎";
}

@media (max-width: 600px) {
  #navigation {
    position: relative;
    padding: 0 8px;
  }
  #navigation #sitetitle {
    display: none;
  }
}
.full {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  background-blend-mode: lighten;
  background-color: #3c4a59;
  background-size: cover;
  opacity: 0;
}

a:hover {
  color: white !important;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  body {
    background-position-x: -100%;
  }
  .full {
    background-size: cover;
    background-position: 50%;
  }
}
