@font-face {
    font-family: 'Classic Console Neue';
    src: url('ClassicConsoleNeue.eot');
    src: url('ClassicConsoleNeue.eot?#iefix') format('embedded-opentype'),
        url('ClassicConsoleNeue.woff2') format('woff2'),
        url('ClassicConsoleNeue.woff') format('woff'),
        url('ClassicConsoleNeue.ttf') format('truetype'),
        url('ClassicConsoleNeue.svg#ClassicConsoleNeue') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

#texte {
	font-size: 20px;
	font-family: "Classic Console Neue", monospace;
	margin: 50px auto;
	text-align: center;
	white-space: pre-line;
    color: white;
}

#texte::after {
    content: '|';
    animation: blink 0.5s step-end infinite;
    display: inline-block;
  }

  @keyframes blink {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }

body{
    background-color: black;
}