@import url(../root.css);

.about-stats {
  padding: 1rem 1rem;
  background-color: #f9f9f9;
  font-family: 'Sora', sans-serif;
  text-align: left center;
  color: black;
}

.about-stats .container {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.125rem;
}  

.animated-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: left center;
  margin-bottom: 2rem;
  font-family: 'Sora', sans-serif;
  color: var(--primary);
}

.cursor {
  display: inline-block;
  width: 1ch;
  animation: blink 1s infinite;
  color: var(--primary);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}  

@media (max-width: 768px) {
  .animated-title {
    font-size: 1.2rem;
  }

  .about-stats {
    text-align: center;
  }
}