*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes ballon {
  0% {
    top: 65vh;
  }
  90% {
    top: 0px;
    filter: drop-shadow(0px 0px 10px rgba(146, 21, 21, 0.5));
    scale: 60%;
  }
  100% {
    scale: 130%;
    filter: drop-shadow(0px 0px 40px rgb(255, 0, 0));
  }
}
@keyframes hiddenballon {
  0% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  background-color: rgb(15, 15, 15);
  overflow: hidden;
}
body #failed-div {
  position: fixed;
  left: 50%;
  top: 50%;
  padding: 20px;
  transform: translate(-50%, -80%);
  color: black;
  font-size: 30px;
  font-family: sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 500px;
  height: 200px;
  background: antiquewhite;
  border-radius: 30px;
  display: none;
}
body #failed-div h3 {
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
}
body #failed-div a {
  height: 30px;
  width: 200px;
  border-radius: 10px;
  background-color: rgb(15, 15, 15);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-family: "Bebas Neue", sans-serif;
  text-decoration: none;
  height: 300px;
}
body .timer {
  color: white;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  z-index: -1;
}
body div {
  margin-top: 20px;
  display: flex;
  gap: 4rem;
  justify-content: center;
}
body div .balloon {
  width: 200px;
  position: relative;
  z-index: 2;
  animation-name: ballon;
  animation-duration: 3.5s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
body div .balloon:active {
  animation-name: hiddenballon;
}
body div .balloon-1 {
  animation-delay: 1s;
}
body div .balloon-2 {
  animation-delay: 2s;
}
body div .balloon-3 {
  animation-delay: 3s;
}
body div .balloon-4 {
  animation-delay: 4s;
}
body div .balloon-5 {
  animation-delay: 5s;
}
body div .balloon-6 {
  animation-delay: 6s;
}
body .grass {
  position: fixed;
  bottom: 0;
  width: 50vw;
  height: 350px;
  margin-left: -5px;
}
body .right {
  left: 50vw;
}/*# sourceMappingURL=sytle.css.map */