:root {
    --popup-color: white;
    --popup-text-color: black;
    --bg-color: black;
    --text-color: green;
    --link-color: green;
    --link-visited-color: green;
    --link-hover-color: lime;
    --text-glow-color: green;
}

@font-face {
    font-family: 'VCR OSD';
    src: url('https://duviz.xyz/static/font/VCR_OSD.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body{
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 30px;
    font-family: 'VCR OSD', monospace;

    a {
        margin-left: 17.5px;
        color: var(--link-color);
        text-decoration: none;
    }
    a:visited {
        color: var(--link-visited-color);
    }
    a:hover {
        color: var(--link-hover-color);
        text-decoration: underline;
    }
}

input{
    background-color: black;
    color: lime;
}

.glow-link {
    color: var(--link-hover-color);
    text-shadow: 0 0 24px var(--text-glow-color), 0 0 24px var(--text-glow-color);
    transition: color 0.0s, text-shadow 0.0s;
}
.glow-link:visited {
    color: var(--link-hover-color);
}
.glow-link:hover {
    color: var(--link-hover-color);
    text-shadow: 0 0 12px var(--text-glow-color), 0 0 24px var(--text-glow-color);
}

.hoverpopup {
    position: relative;
    display: inline-block;
}
.hoverpopup .popuptext {
    visibility: hidden;
    width: 400px;
    background-color: var(--popup-color);
    color: var(--popup-text-color);
    text-align: left;
    border-radius: 0px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: -0px;
    transform: translateX(25%);
    opacity: 0;
    transition: opacity 0.0s;
    font-size: 20px;
}
.hoverpopup:hover .popuptext {
    visibility: visible;
    opacity: 1;
}