body {
  margin: 0;
  padding: 0;
  background-color: #000000;
  /* overflow-y: hidden; */
}
* {
  box-sizing: border-box;
}
#scroll-text {
  /* animation properties */
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);

  -moz-animation: my-animation 6s linear infinite;
  -webkit-animation: my-animation 6s linear infinite;
  animation: my-animation 6s linear infinite;
  /* overflow: hidden; */
  z-index: 1;
}

@keyframes my-animation {
  from {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  to {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.circle {
  display: inline-block;
  background-color: orange;
  height: 15px;
  width: 15px;
  border-radius: 25px;
}

#container {
  height: 120px;
  margin-top: 50px;
}

#ball-1 {
  animation-name: bounce;
  animation-delay: 1s;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
}
#ball-2 {
  animation-name: bounce;
  animation-delay: 1.1s;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
}
#ball-3 {
  animation-name: bounce;
  animation-delay: 1.2s;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(23px);
  }
  60% {
    transform: translateY(-25px);
  }
  80% {
    transform: translateY(0);
  }
}
/* #app {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
} */

/* Image blinking animation */
.focus-scale {
  animation: focus-scale 1s linear infinite;
}
/* Scale up and down animation */
@keyframes focus-scale {
  0% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1.2);
  }
}
