body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #1c1c1c;
  font-family: monospace;
  color: white;
  font-size: 20px;
}

.container {
  text-align: center;
}

.button {
  background-color: #6c3cff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 22px;
  transition:
    background-color 0.3s,
    transform 0.3s;
  margin-top: 20px;
  opacity: 0;
  transform: scale(0.95);
}

.button:hover {
  background-color: #5530cc;
  transform: scale(1.05);
}

.developers {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  opacity: 0;
}

.developer {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s;
}

.developers img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-bottom: 10px;
  transition: transform 0.3s;
}

.developer:hover img {
  transform: scale(1.3);
}

.developer:hover .developer-role {
  transform: scale(1.3);
  transition: transform 0.3s;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.typing-demo {
  width: 58ch;
  animation:
    typing 4s steps(58),
    blink 0.5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid;
  font-family: monospace;
  font-size: 2em;
  margin-bottom: 30px;
}

@keyframes typing {
  from {
    width: 0;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.developer-role {
  font-size: 14px;
  margin-top: 15px;
  color: #aaa;
  text-align: center;
  max-width: 200px;
}

.hidden {
  opacity: 0;
}

.visible {
  opacity: 1;
  transition: opacity 0.5s ease-in;
}
