body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: linear-gradient(to bottom left, #6699cc, #5151c2);
  font-family: monospace;
}

.title {
  display: flex;
  flex-direction: row;
  font-size: 3rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.cursor {
  display: inline-block;
  width: 20px;
  height: 3.5rem;
  background-color: #fff;
  animation: blink 1s infinite;
  vertical-align: bottom;
  margin-bottom: -2px;
}

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