/* styles.css */

body {
  background-color: white;
  width: 100vw;
  height: 100vh;
  margin: 0;
  /* Remove default body margin */
}

.main-content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  /* Stack elements in a column */
  align-items: center;
  justify-content: center;
  margin: 0;
  transition: opacity 0.4s ease-out;
}


.initializing-text {
  text-align: center;
  font-size: 14px;
  color: #333;
  font-family: 'Plus_Jakarta_Sans', sans-serif;
  /* Use Plus_Jakarta_Sans font */
}

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

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

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

@-webkit-keyframes bounce {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(23px);
  }
  60% {
    transform: translateY(-25px);
  }
  80%{
    transform: translateY(0);
  }
}