@font-face {
    font-family: 'JetBrains Mono';
    font-weight: normal;
    src: url('/styles/assets/JetBrainsMono/web/woff2/JetBrainsMono-Regular.woff2') format('woff2'), url('/styles/assets/JetBrainsMono/ttf/JetBrainsMono-Regular.ttf') format('truetype'), url("/styles/assets/JetBrainsMono/web/woff/JetBrainsMono-Regular.woff") format('woff');
}

@font-face {
    font-family: 'Public Sans';
    font-weight: normal;
    src: url("/styles/assets/public-sans/binaries/webfonts/PublicSans-Regular.woff2") format('woff2'), url("/styles/assets/public-sans/binaries/webfonts/PublicSans-Regular.ttf") format('truetype'), url("/styles/assets/public-sans/binaries/webfonts/PublicSans-Regular.woff") format('woff');
}

@font-face {
    font-family: 'Public Sans Bold';
    font-weight: bold;
    src: url("/styles/assets/public-sans/binaries/webfonts/PublicSans-Black.woff2") format('woff2'), url("/styles/assets/public-sans/binaries/webfonts/PublicSans-Black.ttf") format('truetype'), url("/styles/assets/public-sans/binaries/webfonts/PublicSans-Black.woff") format('woff');
}


/*Horizontal rules*/

hr {
    border-color: red;
    clear: both;
}

hr.hidden {
    visibility: hidden;
}


/*Text*/

strong {
    font-weight: bold;
    font-family: "Public Sans Bold", sans-serif;
}

b {
    font-weight: bold;
    font-family: "Public Sans Bold", sans-serif;
}

body {
    margin: 40px auto;
    max-width: 650px;
    line-height: 1.6;
    font-size: 18px;
    color: #f5f5f5;
    padding: 0 10px;
    background-color: #111111;
    font-family: 'Public Sans', sans-serif;
    alignment: center;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    line-height: 1.2
}

img {
    width: 100%;
}


/*Links*/

a {
    color: red;
}

a:visited {
    color: orange;
}

a:hover {
    color: darkred;
}


/*Code blocks*/

code {
    background-color: rgba(255, 0, 0, 0.5);
    font-family: "JetBrains Mono", monospace;
}

code.block {
    display: block;
    overflow: scroll;
}


/*Divs*/

div.spacer {
    height: 150px;
    visibility: visible;
}

div.footer {
    background-color: rgba(255, 0, 0, 0.5);
    line-height: 100%;
}

div.footer h5 {
    padding: 10px
}

.left {
    float: left
}

.right {
    float: right
}

.split {
    height: 100%;
    width: 50%;
}


/*Does the cool thing*/

h1.neo {
    color: red;
    font-size: 120px;
    text-shadow: 2px 0 0 currentColor, 7px 7px 0 orange, 12px 12px 0 green, 17px 17px 0 blue, 22px 22px 0 indigo, 27px 27px 0 mediumpurple;
    padding-right: 20px;
    padding-top: 0;
    alignment: center;
}

h2.neo {
    color: red;
    font-size: 60px;
    text-shadow: 2px 0 0 currentColor, 5px 5px 0 orange, 8px 8px 0 green, 12px 12px 0 blue, 17px 17px 0 indigo, 22px 22px 0 mediumpurple;
    padding-right: 20px;
    padding-top: 0;
    alignment: center;
}

h1.neo.trans {
    color: cornflowerblue;
    font-size: 120px;
    text-shadow: 2px 0 0 currentColor, 7px 7px 0 hotpink, 12px 12px 0 white, 17px 17px 0 hotpink, 22px 22px 0 cornflowerblue;
    padding-right: 20px;
    padding-top: 0;
    alignment: center;
}

h2.neo.trans {
    color: cornflowerblue;
    font-size: 60px;
    text-shadow: 2px 0 0 currentColor, 5px 5px 0 hotpink, 10px 10px 0 white, 12px 12px 0 hotpink, 17px 17px 0 cornflowerblue;
    padding-right: 20px;
    padding-top: 0;
    alignment: center;
}

@media print {
    :root {
        font-family: 'Times New Roman', Times, serif;
    }
    body {
        color: black;
        background-color: none;
    }
    /*Links*/
    a {
        color: black;
        text-decoration: none;
    }
    a:visited {
        color: black;
    }
    a:hover {
        color: black;
    }
}