body {
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hidden {
  display: none !important;
}

.typing {
  font-size: 1.3rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid white;
  width: 0;
  animation: typing 4s steps(40, end) forwards, blink 0.7s step-end infinite;
  cursor: pointer;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  from, to { border-color: transparent; }
  50% { border-color: white; }
}

.card {
  background-color: #111;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid #444;
  text-align: center;
  max-width: 300px;
}

.profile-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.name {
  margin: 0;
  font-weight: bold;
  font-size: 1.3rem;
}

.title {
  margin: 8px 0;
  font-size: 1rem;
  color: #ccc;
}

.divider {
  border: none;
  height: 1px;
  background: #ffffff;
  margin-top: 16px;
}

