h1.example {
}

@media screen and (min-width: 601px) {
  h1.example {
    font-size: 80px;
  }
}

@media screen and (max-width: 600px) {
  h1.example {
    font-size: 20px;
  }
}

