:root {
    --background-color: #fff;
    --text-color: #000;
    --primary-color: cornflowerblue;
    --border-color: #1793d1;
    --code-color: #222;
    --link-color: purple;
}

@media (prefers-color-scheme: dark) {
    :root {
        --background-color: #081631;
        --text-color: #ddd;
        --primary-color: orange;
        --border-color: #f4511e;
        --code-color: #222;
        --link-color: purple;
    }
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body, html {
    font-family: Menlo, Consolas, Monaco, Adwaita Mono, Liberation Mono, Lucida Console, monospace;
    background: var(--background-color);
    color: var(--text-color);
    height: 100%;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: avenir next, avenir, segoe ui, helvetica neue, Adwaita Sans, Cantarell, Ubuntu, roboto, noto, helvetica, arial, sans-serif;
    font-size: clamp(1.5rem, 8vw + 1rem, 2.5rem);
    text-wrap: balance;
    text-align: center;
    margin: 1rem;
}

p {
    /* font-family: Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; */
    font-family: Menlo, Consolas, Monaco, Adwaita Mono, Liberation Mono, Lucida Console, monospace;
    text-wrap: pretty;
}

.text {
    text-align: center;
    margin-top: 1rem;
    margin: auto;
    max-width: 70vw;
}

.bg {
    background-image: url("access-denied.jpg");
    opacity: 0.3;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*
@media screen max-width(1500px) {
    .bg {
        background-image: url("fbi-bg-1500.jpg");
    }
}
*/
