/* Base Styles */
body {
  background: linear-gradient(to bottom right, #010922, #0a0f3d);
  color: white;
  min-height: 100vh;
  margin: 0;
  font-family: sans-serif;
}


/* Image Styling */
.image-button-wrapper img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Launch Button */
.btn-launch {
  background-color: #68acf9;
  color: #f4efef;
  font-weight: 600;
  padding: 8px 16px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-launch:hover {
  background-color: #68acf9;
  color: #f4efef;
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

@media (max-width: 426px) {
  h1 {
    font-size: 1.7rem;
  }

  p {
    font-size: 0.95rem;
  }
}
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}
