body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f4f4f4;
}

.container {
  text-align: center;
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.bounce {
  display: inline-block;
  animation: bounce 1s infinite alternate;
  color: #ff8c00;;
  margin-right: 10px; /* Adjust the margin-right to add more space */
}

.bounce:nth-child(1) {
  animation-delay: 0.1s;
}

.bounce:nth-child(2) {
  animation-delay: 0.2s;
}

.bounce:nth-child(3) {
  animation-delay: 0.3s;
}

.bounce:nth-child(4) {
  animation-delay: 0.4s;
}

.bounce:nth-child(5) {
  animation-delay: 0.5s;
}

.bounce:nth-child(6) {
  animation-delay: 0.6s;
}

.bounce:nth-child(7) {
  animation-delay: 0.7s;
}

.bounce:nth-child(8) {
  animation-delay: 0.8s;
}

.bounce:nth-child(9) {
  animation-delay: 0.9s;
}

.bounce:nth-child(10) {
  animation-delay: 1.0s;
}


@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}


.stats-table {
  width: 95%;
  margin-top: 20px;
  border-collapse: collapse;
}
.stats-table th, .stats-table td {
  border: 1px solid #ddd;
  padding: 20px; 
  font-size: 18px;
}

input[type="text"] {
  background-color: white;
  border: solid black 0px;
  font-size: 40px; 
  text-align: center;
  height: 60px;
  width: 97.5%;
  box-sizing: border-box;
}
.button {
  background-color: #ffffff;
  border: none;
  color: white;
  padding: 18px 36px;
  text-align: center;
  text-decoration: none;
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 18px;
  margin: 6px 4px;
  cursor: pointer;
  height: 60px;
  width: 100%;
  max-width: 180px;
  border-radius: 8px;
  transition-duration: 0.4s;
}

.button img {
  width: 80%; 
}

.button:hover {
  background-color: #4CAF50;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.button:active {
  background-color: #23c030;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(4px);
}
