/* Reset & base - berlaku ke seluruh halaman, tidak spesifik ke satu komponen */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent-green-bright);
}
a:hover {
  color: var(--accent-green);
}

:focus-visible {
  outline: 2px solid var(--accent-green);
  outline-offset: 2px;
}

button {
  font-family: inherit;
  color: inherit;
}
