@font-face {
  font-family: 'JetBrains Mono';
  src:  url('fonts/JetBrainsMono-Regular.woff2') format('woff2');
}

.title {
  font-family: 'JetBrains Mono', 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 60px;
  font-weight: 100;
  margin: 0;
  padding: 0;
}

.main {
  position: absolute;
  height: 250px;
  top: 50%;
  left: 50%;
  margin-top: -125px;
  margin-left: -250px;
  text-align: center
}

.blue {
  color: #57c7fe;
}

.red {
  color: #ff5b56;
}

.magenta {
  color: #ff69c0;
}

.cyan {
  color: #9aecfe;
}

.yellow {
  color: #f3f99c;
}

.green {
  color: #5af78d;
}

.black-bright {
  color: #686767;
}

.foreground {
  color: #eff0ea;
}

.background {
  background-color: #272935;
}

.blink {
  animation: blinker 1s linear infinite;
}

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

