html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  line-height: 1.5;
  background-color: var(--white);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.uniform__potty {
  position: absolute;
  left: -9999px;
}

:root {
  --white: #f1f1f1;
  --black: #000000;
  --white-full: #ffffff;
  --black-full: #000000;
  --primary: #254336;
  --secondary: #0d5d3f;
  --tertiary: #B7B597;
  --background-color: #DAD3BE;
  /* Tekstkleuren */
  --dark-gray: #333333;
  --medium-gray: #666666;
}

* {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--primary);
  margin-bottom: 2rem;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: var(--primary);
  line-height: 1;
  margin: 3rem 0 2rem;
}
h2:first-child {
  margin-top: 0;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--secondary);
}

p {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

a {
  color: var(--primary);
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
a:hover {
  color: var(--secondary);
}