@font-face {
    font-family: 'ShareTechMono', monospace;
    src: url('../fonts/ShareTechMono-Regular.ttf') format('truetype');
}

:root {
    background-color: #050a05;
}

.noselect {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

p {
    font-family: 'ShareTechMono', monospace;
    color: #11cc11;
    text-shadow: 0px 0px 6px #0fb70faa;

    margin: 0;
    padding: 0;
    
    font-size: 2.3vh;
    line-height: 1;
}

#input_line {
    display: flex;
    flex-direction: row;

    margin: 0;
    padding: 0;
}

#new_line_indicator {
    margin-right: 4px;
}

#blinker {
    animation: spin 0.75s steps(2, jump-none) infinite;
}

@keyframes spin {
    from {opacity: 1.0;}
    to {opacity: 0.0;}
}


#shader
{

    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;

    mix-blend-mode:overlay;
}
