.judul{
  margin: 50px 0;
}

.judul h2{
  color: #1AA1F5;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2px;
}


/* Animasi */
.fade-in {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.judul.show{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .0s;
}

.tentang-siga.show{
  opacity: 1;
  transform: translateY(0);
  transition-delay: .2s;
}