img {
  display: block;
  margin: 0 auto;
}

.message {
  display: block;
  margin: 0 auto;
  font-size: xx-large;
  text-align: center;
  font-family: open-sans, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  padding: 0;
}

/* Media query for smaller screens */
@media only screen and (max-width: 600px) {
  img {
    max-width: 100%;
    height: auto;
  }

  .message {
    font-size: large; /* Adjusted font-size for mobile */
  }
}
