*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg-cream);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, ul, li, figure {
  margin: 0;
  padding: 0;
}

ul { list-style: none; }

h1, h2, h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

a {
  color: var(--color-accent-yellow);
  text-decoration: none;
}
a:hover { color: var(--color-accent-orange); }

button {
  font-family: inherit;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

iframe { border: 0; }

::selection {
  background: var(--color-accent-orange);
  color: #0f0f0f;
}

[id] { scroll-margin-top: var(--header-height); }
