/* =====================================================
   STERDIGITAAL FRAMEWORK
   Base styles
===================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 400;
}

h1 {
  margin-bottom: 32px;
  color: var(--color-primary);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
}

p {
  margin-bottom: 36px;
  font-size: 1.25rem;
  line-height: 1.6;
}

a {
  color: inherit;
}

@media (max-width: 800px) {

    p {
        font-size: 1.05rem;
    }

    html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  max-width: 100%;
}

}