:root {
  --amarelin: #f7b450;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: --apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  overflow-x: hidden;
  background: #1f1f1f;
  color: #fff;
}

html {
  @media (max-width: 1080px) {
    font-size: 93.75%; //15px
  }
  @media (max-width: 720px) {
    font-size: 87.5%; //14px
  }
}

header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.25rem 10%;
  background-color: #7e7e7e56;
  backdrop-filter: blur(0.625rem);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}
header ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
}
header li {
  font-size: 20px;
  list-style-type: none;
  cursor: pointer;
  padding: 0px 20px;
  list-style: none;
  text-align: -webkit-match-parent;
}
header li a {
  font-family: --apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #edf0f1;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
header li a:hover {
  color: var(--amarelin);
}

.nav-list ul li {
  padding: 10px 20px;
  font-size: 20px;
  list-style-type: none;
  cursor: pointer;
}

.nav-list li a {
  transition: all 0.3s ease 0s;
}

@media (max-width: 800px) {
  body {
    overflow-x: hidden;
  }
  .nav-list {
    position: absolute;
    top: 0;
    right: 0;
    width: 100vh;
    height: 100vh;
    background-color: #24252a;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-around;
    transform: translateX(100%);
  }
  .mobile-menu {
    display: none;
    cursor: pointer;
    z-index: 51;
  }

  .mobile-menu div {
    width: 32px;
    height: 2px;
    background-color: #fff;
    margin: 8px;
    transition: 0.3s;
  }

  .nav-list li {
    margin-left: 0;
    opacity: 0;
  }

  .mobile-menu {
    display: block;
  }
  .mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
  }

  .mobile-menu.active .line2 {
    opacity: 0;
  }

  .mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
  }
  .nav-list.active {
    transform: translateX(0);
  }

  @keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

#section-limiter {
  max-width: 1920px;
  margin: 0 auto;
}

.logo {
  margin-right: auto;
}

a {
  text-decoration: none;
  color: var(--amarelin);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

a:hover {
  filter: brightness(0.8);
}
