body {
  /* font-family: Arial, sans-serif; */
  text-align: center;
}

#output {
  font-size: 18px;
  margin-top: 20px;
}

/* button {
  border: none
} */

#btn-no {
  padding: 10px 20px;
  /* background-color: #333; */
  /* color: #fff; */
  /* cursor: pointer; */
  font-size: x-large;
}

#btn-yes {
  padding: 10px 20px;
  /* background-color: #333; */
  /* color: #fff; */
  cursor: pointer;
  font-size: x-large;
}

.explosion {
  animation-name: explode;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes explode {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(5);
    opacity: 0;
  }
}

.confetti {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9000;
}

.confetti-inner {
  position: absolute;
  width: 88px;
  height: 99px;
  border-radius: 50%;
  animation-name: confetti-fall;
  animation-duration: 4s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
  }
}

/* #hampster-container {
  position: relative;
  width: 100%;
  height: 100vh;
} */

#hampster-container {
  display: none;
  /* justify-content: space-between; */
  width: 100%;
  height: 100vh;
}

.hampster {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  /* animation: bounce 5s infinite; */
  z-index: 9999;
}

/* @keyframes bounce {
  0% {
    top: 0;
    left: 0;
  }
  50% {
    top: calc(100vh - 100px);
    left: calc(100% - 100px);
  }
  100% {
    top: 0;
    left: 0;
  }
} */

@keyframes bounce {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}