.container {
  background: #ffffff; /* pastel sparkle dream box */
  max-width: 400px;     /* control the STRETCHHHH */
  margin: 60px auto;    /* center it horizontally */
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 0 20px #ffc4f9;
  text-align: center;

  /* ✨ important fixies ✨ */
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow: hidden;
}

.banner {
  text-align: center;
  margin-top: 20px;
}

/* 🖼️ make sure images behave!! */
.container img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ✨ Optional sparkly font and vibe zone ✨ */
body {
  background-color: #ffe6fa; /* cotton candy dreamworld bg */
  font-family: "Segoe Print", cursive;
  color: #5c0067;
  margin: 0;
  padding: 0;
}

/* 🧃 button or interactive stuff */
button {
  font-family: "Segoe Print", cursive;
  background-color: #ffccf9;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 0 0 10px #ff9de6;
  cursor: pointer;
  color: #5c0067;
  transition: all 0.2s ease-in-out;
}

button:hover {
  background-color: #ffc4f9;
  transform: scale(1.05);
}
