/* rubik-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/rubik-v28-latin/rubik-v28-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* rubik-regular - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/rubik-v28-latin/rubik-v28-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* rubik-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/rubik-v28-latin/rubik-v28-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* rubik-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/rubik-v28-latin/rubik-v28-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

:root {
    --page-min-width: 280px;
    --font-family: 'Rubik', sans-serif;
    --primary-color: 0, 69, 61;
    --secondary-color: 0, 209, 99;
    --tertiary-color: 76, 173, 112;
    --body-color: 255, 255, 255;
    --text-color: 0, 0, 0;
    --text-color-on-primary: 255, 255, 255;
    --font-size-s: 0.875rem;
    --font-size-m: 1.1rem;
    --font-size-l: 1.4rem;
    --font-size-xl: 1.8rem;
    --font-size-xxl: 2.3rem;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
    :root {
      --font-size-s: 0.875rem;
      --font-size-m: 1.1rem;
      --font-size-l: 1.5rem;
      --font-size-xl: 2.2rem;
      --font-size-xxl: 3rem;
    }
}
@media (min-width: 992px) {
    :root {
        --font-size-s: 1rem;
        --font-size-m: 1.3rem;
        --font-size-l: 1.9rem;
        --font-size-xl: 2.6rem;
        --font-size-xxl: 4.2rem;
    }
}

html,
body {
    font-size: 16px;
    font-family: var(--font-family);
    color: rgb(var(--text-color));
    background-color: rgb(var(--body-color));
    font-weight: var(--font-weight-regular);
    min-width: var(--page-min-width);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}