/* Ucapan selamat datang */
#welcome-message {
  display: none;
  text-align: center;
  margin-top: 50px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #0d6efd;
  animation: fadeIn 1s ease-in-out;
}

/* Animasi */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Tambahan responsif opsional */
@media (max-width: 576px) {
  #welcome-message {
    font-size: 1.5rem;
    margin-top: 40px;
  }
}

#typeEffect {
  font-family: monospace;
  border-right: 2px solid #0d6efd;
  white-space: nowrap;
  overflow: hidden;
  min-height: 24px;
  display: inline-block;
}

/*#welcome-message {
  display: none;
  text-align: center;
  margin-top: 50px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #0d6efd;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}*/

/*body {
  font-family: 'Segoe UI', sans-serif;
}

img {
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.05);
}

#typeEffect {
  font-family: monospace;
  border-right: 2px solid #0d6efd;
  white-space: nowrap;
  overflow: hidden;
  min-height: 24px;
}*/