/* FONT */
@font-face {
    font-display: block;
    font-family: 'Roboto Mono';
    src: url('/resources/graphics/roboto_mono.ttf') format('truetype');
}

/* BODY */
body {
    background-color: #000000;
    color: var(--text-color);
    font-family: 'Roboto Mono';
    margin: 0;
    padding: 20px;
    display: inline-block;
    min-width: 100%;
    box-sizing: border-box;
}

/* HEADING */
h1 {
    color: #ffffff;
    font-size: 2rem;
    font-style: normal;
    font-weight: bold;
    margin-bottom: 0px;
    margin-top: 0;
    white-space: nowrap;
}


/* PREFORMATTING */
pre {
    color: #ffffff;
    font-family: 'Roboto Mono';
    font-size: 1rem;
    line-height: 1.6;
    top: -5px;
}

/* LINK */
a {
    color: #ffffff;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* SEPARATOR */
hr {
    border: 0;
    border-top: 3px solid #ffffff;
    height: 0;
    margin-left: 0px;
    margin-right: 0px;
    width: auto;
}

/* ADDRESS */
address {
    color: #ffffff;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 0px;
    margin-top: 0;
    white-space: nowrap;
}

/* FILE ICON */
pre img {
    margin-right: 1px;
    vertical-align: -18%;
}