/* imports */

@font-face {
  src: url("PressStart2P-Regular.ttf");
  font-family: "Press Start 2P";
}


/* variables */

:root {
  --color-black: #000000;
  --color-terminal-green: #4AF626;
  --font-terminal: "Press Start 2P";
}


/* styles */

body {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  height: 100vh;
  margin: 0;
  padding: 5rem;
  background-color: var(--color-black);
}

a {
  display: flex;
  font-size: 2rem;
  font-family: var(--font-terminal), monospace;
  line-height: 1.5;
  color: var(--color-terminal-green);
  text-align: center;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:hover::before {
  content: ">\00a0";
}

a:hover::after {
  content: "\00a0<";
}
