.overlay .overlay-content {
  position: relative;
}
.overlay .overlay-content .link .screenshot {
  opacity: 0;
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translate(0%, 50%);
  z-index: -1;
  transition: ease-in-out 0.25s;
}
.overlay .overlay-content .link .screenshot img {
  width: 500px;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  overflow-x: hidden;
  transition: 1s;
}

.overlay-content {
  width: 100%;
  text-transform: uppercase;
  margin: 7rem 3rem;
}

.overlay a {
  line-height: 1.1em;
  padding: 8px;
  text-decoration: none;
  font-size: 4rem;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 3.5rem;
}

.navigation {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  transition: top 0.3s;
  box-sizing: border-box;
  transition: background-color 0.4s ease-out;
  z-index: 100;
}
.navigation .left a p {
  text-transform: uppercase;
  color: black;
  font-size: 1.1rem;
  font-weight: 600;
}
.navigation .left a {
  text-decoration: none;
}
.navigation .right img {
  width: 30px;
  cursor: pointer;
}

@media only screen and (max-width: 815px) {
  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 3rem;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  .overlay .overlay-content {
    position: relative;
  }
  .overlay .overlay-content .link .screenshot {
    opacity: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(0%, 100%);
    z-index: -1;
    transition: ease-in-out 0.25s;
    margin-top: 10rem;
  }
  .overlay .overlay-content .link .screenshot img {
    width: 90%;
  }
}
@media only screen and (min-width: 768px) {
  .overlay a:hover + #screen {
    color: white;
    opacity: 0.7;
  }
  .overlay a:hover {
    color: white;
    opacity: 0.7;
  }
}
@media only screen and (max-width: 500px) {
  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 2rem;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
  .overlay-content {
    width: 100%;
    text-transform: uppercase;
    margin: 7rem 1rem;
  }
}
@media only screen and (max-width: 450px) {
  .navigation {
    padding: 1.5rem 1rem;
  }
}
@media only screen and (max-width: 350px) {
  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 1.5rem;
    color: #818181;
    display: block;
    transition: 0.3s;
  }
}/*# sourceMappingURL=navigation.css.map */