@font-face {
  font-family: 'main';
  src: url('../fonts/Web437_PhoenixEGA_8x8.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

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

html,
body,
#container {
  background-color: #282828;
  color: #66FF66;
  font-family: "main";
  height: 100%;
}

#container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.blink {
  animation: blink 1s steps(2) infinite;
}
