.body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url('../images/IMG_3426.JPG');
  background-position: 0% 50%;
  background-size: contain;
  background-repeat: repeat-x;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  font-size: 10em;
}

.heading {
  color: #fff;
  font-size: 2em;
  font-weight: 800;
  text-shadow: 7px 7px 0 #fbb;
}

@media screen and (max-width: 991px) {
  .heading {
    font-size: 1em;
  }
}

@media screen and (max-width: 479px) {
  .body {
    background-position: 50% 50%;
    background-size: auto 100vh;
  }

  .heading {
    font-size: 0.5em;
    text-shadow: 3px 5px 0 #fbb;
  }
}

