body {
  background-color: #ddd;
  color: #222;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 500;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  text-align: center;
  overflow: hidden;
  flex-direction: column;
}

.message {
  display: inline-block;
  overflow: visible;
  margin: 16px 0;
  font-size: clamp(1rem, 5vw, 5rem);
}

/* Dark theme styles */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #222;
    color: #ddd;
  }
}