body {
  margin: 0;
  padding: 0;
  background-color: black;
  color: #808080; 
  font-family: 'Courier New', Courier, monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

#terminal {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
}

#cursor {
  animation: blink 1s steps(2, start) infinite;
}

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