/* root */
:root {
    --linkColor: rgb(0, 98, 198);
}

html {
    background-color: black;
    color: white;
    font-family: "MS PGothic", sans-serif;
    image-rendering: pixelated;
    font-smooth: never;
}

#container {
    width: 900px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: var(--linkColor);
    text-shadow: 0 0 20px #1a53d882;
    transition: 0.98s;
}

a:hover {
    text-decoration: dotted;
}

footer {
    text-align: center;
    color: white;
}