@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

body {
  background-color: #1e1e1e;
}

#title {
  opacity: 0;
}

.visible {
  opacity: 1 !important;
}


h1 {
  color: #ffffff;
  text-align: center;
  font-family: 'Ubuntu';
  font-weight: 700;
}

p {
  color: #dcdcdc;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1em;
  line-height: 1.6;
  text-align: center;
}

@keyframes charFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.char-fade-up {
  opacity: 0;
  display: inline-block;
  animation: charFadeUp 0.5s ease-in-out forwards;
}