@font-face {
  font-family: "WillRobinson"; 
  src: url("/WillRobinson.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

html, body {
    margin: 0;
    padding: 0;
    color: white;
    background-color: black;
}

main {
    margin: 10px;
}

header, footer {
    letter-spacing: 0.5em;
    background-color: darkblue;
    font-size: 2em;
    padding: 10px;
    text-wrap: nowrap;
    overflow-wrap: nowrap;
    max-width: calc(100vw - 20px);
    overflow: hidden;
}

footer {
    position: absolute;
    top: calc(100vh - 2em + 2px);
}

header {
    position: relative;
    font-family: "WillRobinson";
}

.benninging {
    font-size: 3em;
}

.benninging::after {
    content: "_";
    margin-left: 2px;
    font-weight: bold;
    animation: blink 1.5s step-end infinite;
}

@keyframes blink {
    from, to { color: transparent; }
    50% { color: white; }
}
