/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Patrick Hand', cursive;
  background-color: #fff;
  color: #000;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coming-soon-image {
  width: 80vw;        /* Use 80% of viewport width */
  max-width: 1000px;
  height: auto;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

@media (min-width: 1200px) {
  .coming-soon-image {
    max-width: 1000px;
  }
}


h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.4rem;
}
