h1 {
  font-size:105px;
  text-shadow: 0 0 5px BLACK;
  text-transform: uppercase;
  font-weight: 900;
}
/*screens that are 1200px wide or less*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 67px;
  }
}
/*screens that are 767px wide or less*/
@media screen and (max-width: 767px) {
  h1 {
    font-size: 41px;
  }
}
