/* =====================
CSS RESET
=======================*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================
   LOCAL FONT IMPORTS (Lora + Noto Sans)
   ========================================== */

/* LORA — für Headings */
@font-face {
  font-family: "Lora";
  src: url(../fonts/Lora-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lora";
  src: url(../fonts/Lora-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* NOTO SANS — für Body Text */
@font-face {
  font-family: "Noto Sans";
  src: url(../fonts/NotoSans-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url(../fonts/NotoSans-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url(../fonts/NotoSans-Light.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: var(--font-base);
  line-height: 1.6;
  font-weight: 400;
  color: var(--black-light);
  font-size: var(--text-s);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--black);
}

strong,
b {
  font-weight: 600;
}

h1 {
  font-size: var(--heading-3xl);
}

h2 {
  font-size: var(--heading-m);
}

h3 {
  font-size: var(--heading-s);
}

body {
  background-color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
