

.stat {
  animation: appear 800ms ease-in-out;
  text-align: center;
  min-height: 100px;
}

@keyframes appear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.stat h1 {
  font-size: 2.5rem;
  margin: 0;
  color: #008bd2;
}

.stat p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  color: #555;
}
