body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  background-color: #cef1ff;
}

.container {
  text-align: center;
  color: white;
  position: relative;
  width: 100%;
  height: 100%;
  background: no-repeat center center;
  background-size: cover;
  animation: pulse 5s infinite;
  z-index: 1;
}

@keyframes pulse {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
  100% {
    filter: brightness(1);
  }
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: fadeIn 3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

h1 {
  font-size: 4em;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px rgb(0, 157, 255), 0 0 20px rgb(0, 157, 255), 0 0 30px rgb(0, 157, 255);
  }
  to {
    text-shadow: 0 0 20px rgb(0, 157, 255), 0 0 30px rgb(0, 157, 255), 0 0 40px rgb(0, 157, 255);
  }
}

p {
  font-size: 2em;
  margin: 0;
  padding-bottom: 20px;
  animation: float 3s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

#parachutes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.parachute {
  position: absolute;
  top: -300px;
  width: 250px;
  height: 250px;
  background: url("parachute bull transparent.png") no-repeat center center;
  background-size: contain;
  animation: fall linear infinite;
}

.parachute:nth-child(1) {
  left: 20%;
  animation-duration: 7s;
}

.parachute:nth-child(2) {
  left: 50%;
  animation-duration: 10s;
  animation-delay: 3s;
}

.parachute:nth-child(3) {
  left: 80%;
  animation-duration: 8s;
  animation-delay: 5s;
}

@keyframes fall {
  to {
    transform: translateY(110vh);
  }
}

.button {
  background-color: #007bff;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s;
  z-index: -1;
}

.button:hover::before {
  width: 200px;
  height: 200px;
}
