
/* this is the text used in the whole website */

@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");


:root {
  /* Font Families */
  --font-primary: "Poppins", sans-serif;

  /* Font Weights */
  --font-thin: 100;
  --font-extralight: 200;
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-black: 900;

  /* Headings & Text Roles */
  --heading-font: var(--font-semibold);
  --section-heading-font: var(--font-semibold);
  --subheading-font: var(--font-medium);
  --body-font: var(--font-regular);
  --caption-font: var(--font-light);
  --label-font: var(--font-medium);
  --miscellaneous-font: var(--font-light);
}

h2 {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 3rem;
  font-style: normal;
  font-weight: var(--section-heading-font);
  line-height: normal;
  margin: 0px;
}

h3 {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-style: italic;
  font-weight: var(--subheading-font);
  line-height: normal;
  margin: 0px;
}

p {
  align-self: stretch;
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-style: normal;
  font-weight: var(--body-font);
  line-height: normal;
}


@media screen and (max-width: 1024px) {
  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 480px) {
  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.6rem;
  }
}
