body {
  background: #121212;
  color: white;
  font-family: sans-serif;
  text-align: center;
  padding-top: 100px;
}
.container {
  padding: 20px;
}
a {
  color: #00e0ff;
  text-decoration: none;
}#typewriter {
  font-size: 24px;
  border-right: 2px solid #00e0ff;
  width: fit-content;
  margin: auto;
  white-space: nowrap;
  overflow: hidden;
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  50% { border-color: transparent; }
}
#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.glow-button {
  padding: 10px 20px;
  background: #00e0ff;
  color: black;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 10px #00e0ff;
}
.glow-button:hover {
  background: #0ff;
  box-shadow: 0 0 20px #0ff, 0 0 40px #0ff;
  transform: scale(1.05);
}