
body {
  font-family: 'Arial', sans-serif;
  background-color: #0d0d0d;
  color: #fff;
  text-align: center;
  padding: 40px;
}
h1 {
  font-size: 60px;
  color: #e50914;
}
p {
  font-size: 20px;
  max-width: 800px;
  margin: auto;
}
.red {
  color: #e50914;
}
.button {
  background: #e50914;       /* Red background */
  color: black;              /* Black text */
  padding: 15px 30px;        /* Button size */
  margin: 15px 10px;         /* Space around buttons */
  text-decoration: none;     /* Remove underline */
  font-weight: bold;         /* Bold text */
  display: inline-block;     /* Make it a block */
  border-radius: 6px;        /* Rounded corners */
  font-size: 16px;           /* Text size */
  transition: background-color 0.3s ease;  /* Smooth hover */
}

.button:hover {
  background-color: #b2060f; /* Darker red on hover */
}

.float-image {
  width: 300px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
#balloon-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  overflow: visible;
  z-index: 9999;
}
