@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
*, *:before, *:after {
  margin: 0;
  padding: 0;
  text-decoration: none;
  /*font-family: "poppins", serif;*/
}
#nav-bar{
  /*background: #1e1f25;*/
  display: flex;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  padding: 4rem;
  font-weight: 300;

}
#logo {
    width: 60px;
    margin: 0.5rem;
    margin-bottom: 0;
}

.hambergur {
  width: 1.6rem;
  margin: 1rem;
}
.hambergur div {
  width: 2.6rem;
  height: 2px;
  border: 2px solid #fff;
  margin-bottom: 5px;
  border-radius: 5px;
}
.hambergur div:nth-child(2) {
  width: 1.3rem;
  background: #fff;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.container {
  padding: 1rem;
}
@media (min-width: 720px) {
  .container {
    padding: 0.5rem 2rem;
  }
}
.fullscreen {
  clip-path: circle(0% at 96.5% 4%);
  position: absolute;
  background: #1e1f25;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transition: all 0.5s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}
.fullscreen ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
}
.fullscreen ul li {
  padding: 0.5rem 1rem;
}
.fullscreen ul li a {
  font-size: 4.5rem;
  background: -webkit-linear-gradient(45deg, #00adff 0%, rgba(53 49 249 / 69%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fullscreen .close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 2rem;
  height: 2rem;
  transform: rotate(45deg);
  /*padding: 4rem;*/
  margin: 3.2rem;
}
.fullscreen .close div {
  width: 32px;
  height: 32px;
  overflow: hidden;
}
.fullscreen .close div:before, .fullscreen .close div:after {
  content: "";
  width: 4rem;
  height: 2px;
  border: 2px solid red;
  position: absolute;
  border-radius: 5px;
}
.fullscreen .close div:after {
  transform: rotate(90deg);
  background: red;
}
.fullscreen.active {
  clip-path: circle(140% at 96.5% 4%);
  transition: all 0.7s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}
.fullscreen.active ul > li {
  animation: animateIn 360ms ease-in-out calc(var(--animation-order) * 100ms) both;
}
.fullscreen.reverse_anim {
  clip-path: circle(0% at 96.5% 4%);
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.23, 0.93, 0.23, 0.93);
}
@keyframes animateIn {
  0% {
    opacity: 0;
    transform: translateX(10px) rotate(2deg);
  }
  100% {
    opacity: 1;
  }
}

