.moveup-header {
  display: flex;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2), 0 0 20px 0 rgba(0, 0, 0, 0.19);
  position: fixed;
  background-color: var(--color-body);
  top: 0;
  width: 100%;
  justify-content: space-around;
  z-index: 1000;
}
.moveup-header .m-logo {
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px 9% 10px 5%;
  font-size: 1.5rem;
}
.moveup-header .m-logo a {
  text-decoration: none;
  font-family: "Montserrat";
  color: var(--color-h2);
  font-weight: bold;
  padding-left: 20px;
}
.moveup-header .hamburger-menu {
  position: relative;
  z-index: 100;
  top: 5px;
  right: 5%;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.moveup-header .hamburger-menu span {
  display: inline;
  transition: 0.4s ease;
  position: absolute;
  left: 14px;
  height: 3px;
  background-color: var(--color-h2);
  width: 50%;
}
.moveup-header .hamburger-menu span:nth-of-type(1) {
  top: 15px;
}
.moveup-header .hamburger-menu span:nth-of-type(2) {
  top: 23px;
}
.moveup-header .hamburger-menu span:nth-of-type(3) {
  top: 31px;
}

#moveHeader.upMove {
  animation: upAnime 0.5s forwards;
}

@keyframes upAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
#moveHeader.downMove {
  animation: downAnime 0.5s forwards;
}

@keyframes downAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=moveup-header.css.map */