body {
  background-color: #bdbdbd;
  font-family: monospace;
  color: #292929;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 20px;
}

.container {
  text-align: center;
  max-width: 100%;
}

.header-text {
  font-size: 64px;
  margin-bottom: 30px;
  color: #292929;
}

.image-button img {
  width: 700px;
  max-width: 100%; /* Makes image responsive */
  height: auto;
  border: 3px solid #000;
  display: block;
  margin: 0 auto;
}

.small-text {
  margin-top: 20px;
  font-size: 24px;
  color: #292929;
}

/* -------- Responsive Styles for Mobile -------- */
@media (max-width: 768px) {
  .header-text {
    font-size: 40px;
  }

  .small-text {
    font-size: 18px;
  }

  .image-button img {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .header-text {
    font-size: 32px;
  }

  .small-text {
    font-size: 16px;
  }
}
