@font-face {
    font-family: 'DOS-VGA';
    src: url(./DOS-VGA.ttf);
}

body {
    margin: 0;
    overflow: hidden;
    height: 100vh;
    background-color: #000;
    position: relative;
    padding: 10px;
    font-family: 'DOS-VGA';
}

div[scanline] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0.1%, transparent 99.9%);
    background-size: 100% 32px;
    animation: scanline 3s infinite linear;
    z-index: 2;
}

@keyframes scanline {
    0% {
        background-position-y: 0;
    }

    100% {
        background-position-y: 100%;
    }
}

div[screen] {
    display: flex;
}

p[text] {
    color: white;
    margin: 0;
    filter: brightness(110%);
    position: relative;
    text-shadow: 0 0 3px;
}

div[hover] {
    width: 10px;
    height: 2.5px;
    background: #eee;
    margin-left: 1px;
    margin-top: auto;
    margin-bottom: 3px;
    position: fixed;
}