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

:root {
  --bg-color: linear-gradient(180deg, #040918 0%, #091540 100%);
  --primary-color: hsl(200, 60%, 99%);
  --secundary-color: hsl(0, 0%, 93%);
  --ter-color: hsl(226, 25%, 17%);
  --cuar-color: hsl(225, 23%, 24%);
  --card-bg-color: hsl(226, 11%, 37%);
  --quin-color: hsl(227, 75%, 14%);
  --border-color: hsl(0, 0%, 78%);
  --toggle-icon: url("/assets/images/icon-sun.svg");
}

[data-theme=light] {
  --bg-color: linear-gradient(180deg, #EBF2FC 0%, #EEF8F9 100%);
  --toggle-icon: url("/assets/images/icon-moon.svg");
}

body {
  background: var(--bg-color);
  transition: background 0.3s ease, color 0.3s ease;
}
body header {
  background-color: var(--ter-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: clamp(1rem, 2.5vw, 3rem) clamp(1rem, 7vw, 7rem);
  margin-top: 3rem;
  padding: 0.7rem 0.9rem;
  border-radius: 1rem;
}
body header .logo-text {
  fill: var(--primary-color);
}
body header #toggle-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--cuar-color);
  padding: 0.8em;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 44px;
  height: 44px;
}
body header #toggle-btn::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: var(--toggle-icon);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
body main {
  display: flex;
  flex-direction: column;
}
body main .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  body main .top {
    flex-direction: row;
    justify-content: space-between;
    margin: 0 clamp(1rem, 7vw, 7rem);
    margin-bottom: 2rem;
  }
}
body main .top h1 {
  font-family: "Noto Sans";
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}
body main .top .filter {
  font-family: "Noto Sans";
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--border-color);
  padding: 0.3rem 1rem;
  border: none;
  border-radius: 1rem;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
body main .top .filter--btn-all {
  background-color: var(--cuar-color);
  border: 0.1rem solid var(--card-bg-color);
}
body main .top .filter--btn-active {
  background-color: var(--cuar-color);
  border: 0.1rem solid var(--card-bg-color);
}
body main .top .filter--btn-inactive {
  background-color: var(--cuar-color);
  border: 0.1rem solid var(--card-bg-color);
}/*# sourceMappingURL=styles.css.map */