/* If the screen size is 1200px wide or more, set the font-size to 80px */
@media (min-width: 1200px) {
  .responsive-font-example {
    font-size: 17px;
  }
}
/* If the screen size is smaller than 1200px, set the font-size to 200px */
@media (max-width: 1199.98px) {
  .responsive-font-example {
    font-size: 17px;
  }
}