/* General Styles */
body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #121212;
  color: #ffffff;
  font-family: "Pacifico", cursive;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Typing Animation */
.typing {
  font-size: 2em;
  white-space: nowrap;
  border-right: 2px solid #ffffff;
  overflow: hidden;
  animation: typing 4s steps(30, end), blink-caret 0.75s step-end infinite;
}

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

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

/* Responsive Design */
@media (max-width: 600px) {
  .typing {
    font-size: 1rem;
  }
}
