body {
  margin: 0;
  font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
  background-image: url('desert_hang.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

header h1 {
  color: white;
  text-shadow: 2px 2px 5px black;
  font-size: 70px;
  margin-bottom: 15px;
}

main {
  max-width: 500px;
  text-align: center;
}

.instructions p {
  color: white;
  font-size: 20px; 
  margin-bottom: 30px;
}

.play-button {
  background-color: #783e0e;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 20px; 
  border-radius: 5px;
  transition: background-color 0.3s;
  cursor: pointer;
}

.play-button:hover {
  background-color: #eedc82;
  color: black;
}

@media (max-width: 1200px) {
  header h1 {
    font-size: 60px; 
  }

  .instructions p {
    font-size: 18px;
  }

  .play-button {
    padding: 12px 25px;
    font-size: 18px; 
  }

  body {
    background-position: left center;
  }
}

@media (max-width: 768px) {
  header h1 {
    font-size: 50px;
  }

  .instructions p {
    font-size: 16px;
  }

  .play-button {
    padding: 10px 20px;
    font-size: 16px;
  }

  body {
    background-position: top center;
    background-size: cover;
  }
}

@media (max-width: 480px) {
  header h1 {
    font-size: 40px;
  }

  .instructions p {
    font-size: 14px;
  }

  .play-button {
    padding: 8px 16px;
    font-size: 14px;
  }

  body {
    flex-direction: column;
    padding: 10px;
  }
}

@media (min-width: 1440px) {
  header h1 {
    font-size: 80px;
  }

  .instructions p {
    font-size: 22px;
  }

  .play-button {
    padding: 20px 40px;
    font-size: 22px;
  }

  body {
    background-position: center;
  }
}
