@font-face {
    font-family: 'CaskaydiaMono';
    src: url('/fonts/x.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

:root {
    --font: 'CaskaydiaMono';
}

html {
    width: 100%;
    height: 100vh;
    background: var(--base);
}

p, a {
    margin: 3px;
    padding: 5px;
}

.terminals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 12px;
    column-gap: 12px;
    margin: 0 auto;
    margin-top: 25vh;
    max-width: 1500px;
}

.terminal, .oops {
    border: 2px solid var(--sky);
    border-radius: 5px;
    box-shadow: 10px 5px 5px var(--crust);
    color: var(--text);
    font: 24px var(--font);
    background: var(--base);
}

.highlight {
    color: var(--sky);
}

.highlight2 {
    color: var(--teal);
}

.bio {
    grid-row: 1 / span 2;
}

a, a:visited {
    font: 24px var(--font);
    color: var(--sky);
    text-decoration: underline dotted;
}

a:hover {
    text-decoration: underline;
    font-weight: bold;
}

.oops {
    margin: 0 auto;
    margin-top: 25vh;
    max-width: 600px;
    text-align: center;
}

@media screen and (max-width: 800px) {
    .terminal {
        width: 100%;
        margin-top: 12px;
    }

    .terminals {
        display: inline-block;
        margin-top: 0;
    }
}
