/* Atur ukuran dasar ke default browser */
html {
  font-size: 100%;
  /* biasanya 16px */
}

/* Pertahankan gaya Pico tapi pakai skala rem sesuai browser */
body {
  font-size: 1rem;
  /* mengikuti html */
  line-height: 1.5;
}

/* Heading tetap pakai gaya Pico tapi ukuran rem dari default */
h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

/* Elemen teks lainnya */
p,
span,
strong,
em,
small {
  font-size: inherit;
}

small {
  font-size: 0.875rem;
}

body {
  scroll-behavior: smooth;
}

header,
section,
footer {
  padding: 4rem 1rem;
}

nav ul {
  margin: 0;
}

footer {
  text-align: center;
  font-size: 0.9rem;
}

.logo {
  height: 2rem;
  vertical-align: middle;
  margin-right: 0.5rem;
}

:root {
  --icon-color: black;
}

@media (prefers-color-scheme: dark) {
  :root {
    --icon-color: white;
  }
}

.icons {
  /* width: 2em; Atau 100% atau px */
  color: var(--icon-color);
}