body {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
}

h1 {
  color: white;
  font-family: Courier, monospace;
  font-size: 36px;
  letter-spacing: 1px;
}

.cursor {
  display: inline-block;
  width: 0.4em; /* Adjust the width as needed */
  height: 0.7em; /* Adjust the height as needed */
  background-color: white;
  animation: cursor-animation 1s infinite;
}

@keyframes cursor-animation {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

.space {
  display: inline-block;
  width: 6px; /* Adjust the width as needed */
}