header {
  height: 80px;
  position: fixed;
  background: linear-gradient(to bottom, #0e1212 0%, #0e1212 80%, transparent 100%);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
}
header img {
  height: 60px;
  padding-left: 20px;
}

.menu-trigger,
.close-trigger {
  position: absolute;
  top: 25px;
  right: 20px;
  display: block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 333;
}
.menu-trigger:hover .menu-trigger-bar:before,
.close-trigger:hover .menu-trigger-bar:before {
  width: 100%;
}
.menu-trigger:hover .close-trigger-bar:before,
.close-trigger:hover .close-trigger-bar:before {
  width: 100%;
}

.close-trigger {
  z-index: 5;
  top: 35px;
}

.menu-trigger-bar {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #fff;
  margin-bottom: 6px;
  transform: rotate(-45deg);
  position: relative;
}
.menu-trigger-bar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #03ccda;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.menu-trigger-bar.top {
  width: 50%;
}
.menu-trigger-bar.middle:before {
  left: auto;
  right: 0;
}
.menu-trigger-bar.bottom {
  width: 50%;
  margin-left: 50%;
}

.close-trigger-bar {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #03ccda;
  position: relative;
}
.close-trigger-bar:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.close-trigger-bar.left {
  transform: translateX(100px) translateY(-100px) rotate(-45deg);
}
.close-trigger-bar.right {
  transform: translateX(-100px) translateY(-100px) rotate(45deg);
  top: -3px;
}

.inner-container,
.menu-container {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.inner-container {
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 20;
  display: none;
}

.menu-bg {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  width: 200vw;
  height: 0;
  background-color: rgba(14, 18, 18, 0.862745098);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
  border-radius: 30px;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: height 0.8s cubic-bezier(0.55, 0, 0.1, 1);
  will-change: height;
}

.menu-bg.open {
  height: 100vh;
}

.menu-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
}

.menu {
  display: block;
  width: 100%;
  padding: 20%;
}
.menu li {
  text-align: left;
  display: block;
  padding: 15px 0;
}
.menu a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  padding: 10px 0;
  position: relative;
  font-size: 1.5em;
}
.menu a:hover {
  color: #03ccda;
}
.menu a:hover:before {
  color: #03ccda;
  opacity: 1;
  transform: translateX(0px);
}
.menu a:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18px;
  height: 4px;
  opacity: 0;
  background-color: #03ccda;
  transform: translateX(100px);
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}

#links {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 50px;
  font-size: 13px;
  font-family: tahoma;
  color: #fff;
}

#links a {
  text-decoration: none;
  font-size: 2.3em;
  color: #fff;
}

#twitter {
  position: absolute;
  bottom: 15px;
  right: 20px;
}

#pens {
  position: absolute;
  bottom: 15px;
  left: 20px;
}

.menu-trigger,
.close-trigger,
.logo,
.inner-container {
  position: fixed;
  /* adjust top/left/right/bottom as needed */
}

/***** button animation *****/
.login-button {
  position: fixed;
  right: 70px;
  list-style: none;
  width: 40px;
  height: 40px;
  box-shadow: 0 10px 25px rgba(3, 204, 218, 0.2901960784);
  border-radius: 60px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

.login-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 60px;
  background: #181e29;
  opacity: 0;
  transition: 0.5s;
}

.login-button::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  background: linear-gradient(45deg, var(--i), var(--j));
  transition: 0.5s;
  filter: blur(15px);
  z-index: -1;
  opacity: 0;
}

.login-button:hover {
  width: 180px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
}
.login-button:hover .icon {
  display: none;
}

.login-button:hover::before {
  opacity: 1;
}

.login-button:hover::after {
  opacity: 0.5;
}

.login-button span {
  position: absolute;
}

.login-button .title {
  color: #03ccda;
  font-size: 1.1em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: scale(0);
  transition: 0.5s;
  transition-delay: 0s;
}

.login-button:hover .title {
  transform: scale(1);
  transition-delay: 0.25s;
}

/***** End button animation *****//*# sourceMappingURL=navbar.css.map */