body {
  margin: 0;
  padding: 0;
  font-family: "Manrope";
  background-color: #ebe5e5;
  font-size: 1.1rem;
}

a {
  text-decoration: none;
}

.container {
  padding-inline: 4.5rem;
}

/* HEADER */

.header {
  background-color: #fafafa;
  position: fixed;
  box-sizing: border-box;
  width: 100%;
  box-shadow: 0 10px 15px -5px rgba(0, 0, 0, 0.1);
}

.header__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-inline: 1rem;
}

.header__logo img {
  width: 6rem;
}

.header__btn button {
  border-radius: 10px;
  border: none;
  padding: 0.6rem;
  font-weight: 600;
  font-size: 1.5rem;
  width: 8.475rem;
  text-transform: uppercase;
  color: #ffffff;
  transition: 0.2s;
}

.header__btn button:hover {
  cursor: pointer;
  box-shadow: 0 0 15px rgba(129, 49, 42, 0.6);
}

.header__btn-login {
  background-color: #90a4ae;
}

.header__btn-signup {
  background-color: #607d8b;
}

.header__nav-list {
  list-style: none;
  padding-left: 0;

  display: flex;
  flex-direction: row;
  background: #e0e0e09c;
  border-radius: 10px;
}

.header__nav-list a {
  color: rgba(0, 0, 0, 0.615);
  font-weight: 600;
  transition-duration: 0.2;
  padding: 0.3rem;
}

.header__nav-list a:hover {
  color: #607d8b;
  background: #f1f0f0;
  border-radius: 10px;
  transition: 0.2s;
}

.header__nav-list li {
  padding: 0.5rem;
}

.header__burger-btn {
  display: none;
}

/* Footer */
.footer {
  background-color: #191824;
  padding-top: 20px;
  padding-bottom: 20px;
  color: white;
}

.footer__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer__privacy {
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding-inline: 0;
  }

  .header__logo img {
    width: 4rem;
  }

  .header__btn button {
    font-size: 1.2rem;
    width: auto;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: #fafafa;
    flex-direction: column;
    align-items: end;
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid #607d8b;
  }

  .header__nav-list {
    flex-direction: column;
    background: none;
    text-align: end;

    transform: translateX(0%);
  }

  .header__nav.active {
    display: flex;

    transform: translateY(0);
  }

  .header__burger-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .header__burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 100;
  }

  .header__burger-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #607d8b;
    transition: all 0.3s ease;
  }

  .footer {
    padding-inline: 1rem;
  }

  .footer__content {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 426px) {
  .header__btn button {
    font-size: 1rem;
    width: auto;
  }
}
