* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: white;
  font-family: 'Helvetica Neue', sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.5rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.button {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 1px solid white;
  color: white;
  transition: background 0.3s;
}

.button:hover {
  background-color: white;
  color: black;
}

.more-section {
  padding: 4rem 2rem;
  text-align: center;
  color: #999;
}

#typed-text::after {
  content: '|';
  animation: blink 1s step-end infinite;
  margin-left: 5px;
  color: #cccccc;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

