[data-theme="dark"] {
  --bg: hsl(0, 0%, 10%);

  --text-primary: hsl(0, 0%, 90%);
}
[data-theme="light"] {
  --bg: hsl(0, 0%, 80%);

  --text-primary: hsl(0, 0%, 10%);
}

* {
  padding: 0;
  margin: 0;
}

html,
body {
  background-color: var(--bg);
  color: var(--text-primary);
  margin: 0;
  padding: 0;
}

a {
  color: var(--text-primary);
  text-decoration: none;
}

.nav {
  width: 100%;
  margin: 0;
  padding: 0;
  height: auto;
  font-size: large;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-left {
  display: flex;
  gap: 0.5rem;
}

.nav-right {
  display: flex;
  gap: 0.25rem;
}

button {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
}
