@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&display=swap');

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    box-sizing: border-box;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #0a0a0a;
    color: #efefef;
}

code {
    font-family: "Google Sans Code", monospace;
    font-size: 13px;
    line-height: 1.65;
}

a:link, a:visited {
    text-decoration: none;
    color: #00ee73;
}

a:hover {
    color: #ff1a72;
}

a:active {
    color: #b30c4c;
}

.cursor {
    display: inline-block;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%   { opacity: 1; }
    49%  { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 0; }
}

.ErrorCode {
    background-color: #0a0a0a;
    color: #efefef;
}