@font-face {
    font-family: 'Courier-Local';
    src: url('assets/WOFF/courier.woff');
}

html {
    margin: 0;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}
body {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    position: fixed;
    cursor: crosshair;
    user-select: none;
    overflow: hidden;
    color: white;
    background: black;
    font-size: 1.5vh;
}
html, body, .flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
p {
    position: absolute;
    display: inline;
    padding: 1vh 3vh 1vh 3vh;
    border: 0.1vh solid red;
    font-family: 'Courier-Local', 'Courier New', Courier, monospace;
    width: fit-content;
    white-space: pre-wrap;
    word-break: break-all;
}
red {
    color: red;
}
a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    &.null {
        color: grey;
        cursor: not-allowed;
    }
    &:hover:not(.null) {
        color: black;
        background: red;
        font-weight: bold;
    }
    &.comp {
        color: red;
        font-weight: bold;
    }
    &[status]:hover:after {
        content: attr(status);
        position: fixed;
        min-width: 10vh;
        text-align: center;
        color: white;
        background: black;
        border: 0.1vh solid red;
        line-height: 0;
        padding: 0.8vh;
        margin: 0 0 0 2vh;
    }
}