.header {
  padding-top: 1.7rem;
  padding-bottom: 1.7rem;

  background-color: rgba(153, 205, 50, 0.305);

  border-bottom: 1px solid #000;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav {
  font-weight: 500;
  font-size: 2rem;
  color: #292929;
}

.header-nav-list {
  display: flex;
  gap: 3rem;

  transition: all 2s ease-in;
}

.header-nav-list a:hover {
  color: #01996d;
  transform: scale(1.2);
  font-weight: 700;
}

.header-login {
  font-weight: 400;
  font-size: 2rem;
  color: #000;
}

@media (min-width: 1450px) {
  html {
    font-size: 82%;
  }
}

@media (max-width: 1100px) {
  html {
    font-size: 36%;
  }

  .header-nav-list {
    gap: 5rem;
  }
}

@media (max-width: 850px) {
  html {
    font-size: 32%;
  }

  .header-nav-list {
    gap: 3rem;
  }

  .header-nav {
    font-weight: 600;
    font-size: 2.5rem;
  }
}

@media (max-width: 750px) {
  .header-row {
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
  }
}

@media (max-width: 370px) {
  .header-nav-list {
    gap: 2rem;
  }
}

