/*
Custom CSS Code for Oxygen V1.0

*/

html {
  scroll-behavior: smooth;
}

/*
Fluid Typography with Clamp
https://oxygenbuilder.com/2020/08/23/tutorial-implementing-fluid-typography-for-headings-in-oxygen/
https://web-development.space/tools/px-to-vw/
*/

/*
@media (max-width:1120px) {
  h1 {
    font-size: clamp(30px, 4vw, 50px);
  }

  h2 {
    font-size: clamp(24px, 3.5vw, 40px);
  }

  h3 {
    font-size: clamp(22px, 2.3vw, 26px);
  }

  h4 {
    font-size: clamp(18px, 1.7vw, 20px);
  }

}

*/
