:root {
  --blink-color: #327729;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: monospace;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

h1 {
  font-size: 9em;
  opacity: 0.8;
  margin: 0;
}

p {
  color: #327729;
  letter-spacing: 0.3em;
  margin: 0;
}

.centered {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #327729;
  background: linear-gradient(
    90deg,
    rgba(50, 119, 41, 1) 0%,
    rgba(108, 196, 23, 1) 50%,
    rgba(35, 110, 32, 1) 100%
  );
}

.cursor {
  display: inline-block;
  height: 1.1em;
  margin-top: -2px;
  width: 0.5em;
  vertical-align: middle;
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}

@keyframes blink {
  from,
  to {
    background: 0 0;
  }
  50% {
    background: var(--blink-color);
  }
}

@-moz-keyframes blink {
  from,
  to {
    background: 0 0;
  }
  50% {
    background: var(--blink-color);
  }
}

@-webkit-keyframes blink {
  from,
  to {
    background: 0 0;
  }
  50% {
    background: var(--blink-color);
  }
}

@-ms-keyframes blink {
  from,
  to {
    background: 0 0;
  }
  50% {
    background: var(--blink-color);
  }
}

@-o-keyframes blink {
  from,
  to {
    background: 0 0;
  }
  50% {
    background: var(--blink-color);
  }
}
