.active {
  color: white;
  font-weight: bold;
  font-size: 1em;
}

.fade-out {
  animation: fadeOut 1s ease-out forwards;
  animation-delay: 10s;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
