/* General */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Cursive', sans-serif;
  text-align: center;
  background-color: black;
  overflow-x: hidden;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Multi-color text */
.multi-color {
  background: linear-gradient(90deg, #FF0000, #FFA500, #FFFF00, #00FF00, #0000FF, #FF00FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Fireworks canvas */
#fireworksCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Landing page */
.landing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

input[type="text"], input[type="file"], button {
  padding: 12px;
  margin: 10px 0;
  font-size: 18px;
  border-radius: 8px;
}

button {
  cursor: pointer;
}

/* Wish page */
.wish-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.wish-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.wish-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.wish-text {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.share-section {
  margin-bottom: 10px;
}

.share-label {
  font-weight: bold;
  margin-bottom: 5px;
}

.share-buttons a {
  display: inline-block;
  margin: 5px 10px;
  text-decoration: none;
  color: white;
  background-color: #FF4500;
  padding: 8px 12px;
  border-radius: 5px;
}

.create-own {
  display: block;
  margin-top: 20px;
  text-decoration: underline;
  color: white;
  z-index: 3;
  position: relative;
  font-size: 18px;
}

/* Footer (optional) */
.footer {
  margin-top: 30px;
}
