/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  border: 0;
  height: 100%;
  width: 100%;

  font-family: var(--font-family), "sans-serif";
  font-size: var(--font-size-base);
  font-weight: var(--fw-regular);
}

body {
  min-height: 100vh;
}

h1 {
  font-family: var(--font-title), "sans-serif";
  font-size: var(--fs-h1);
}
h2 {
  font-family: var(--font-title), "sans-serif";
  font-size: var(--fs-h2);
}
h3 {
  font-family: var(--font-title), "sans-serif";
  font-size: var(--fs-h3);
  @media (min-width: 640px) and (max-width: 768px) {
    font-size: calc(var(--fs-h3) - 8px);
  }
}
h4 {
  font-family: var(--font-title), "sans-serif";
  font-size: var(--fs-h4);
}
h5 {
  font-family: var(--font-title), "sans-serif";
  font-size: var(--fs-h5);
}

p {
  margin-bottom: var(--paragraph-space);
}

img {
  width: 100%;
  height: auto;
}