@font-face {
    font-family: "Junicode";
    src: url("/fonts/Junicode.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Junicode";
    src: url("/fonts/Junicode-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Junicode";
    src: url("/fonts/Junicode-Italic.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: "Junicode";
    src: url("/fonts/Junicode-BoldItalic.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
}

body {
    font-family: "Junicode", "Times New Roman", Times, serif;
    font-size: 16pt;
    background: rgb(0, 0, 0);
    min-height: 100vh;
    color: rgb(0, 58, 23);
    padding-left: 20%;
    padding-right: 20%;
    padding-bottom: 4rem;
}

html,
body,
button,
input,
select,
textarea {
    font-family: "Junicode", "Times New Roman", Times, serif;
}

.bg-css {
    --bg-line-half: 0.5px;
    --bg-line-color: rgba(255,255,255,0.2);
    background-color: #111;
    background-image: url("/media/bg.png");
    background-size: 24px 24px;
    background-repeat: repeat;
}

@media (min-resolution: 1.5dppx) {
    .bg-css {
        --bg-line-half: 0.34px;
    }
}

@media (min-resolution: 2dppx) {
    .bg-css {
        --bg-line-half: 0.26px;
    }
}

@media (min-resolution: 3dppx) {
    .bg-css {
        --bg-line-half: 0.18px;
    }
}

.bg-css #page,
.bg-css .footer-link {
        position: relative;
        z-index: 1;
}


#page {
    margin-left: 1em;
}

h1 {
    text-align: left;
}

p {
    text-align: left;
}

div {
    text-align: center;
}

h2 {
    text-align: left;
}

a {
    color: rgb(172, 126, 0);
    text-decoration: underline wavy;
}

a:visited {
    color: rgb(59, 20, 0);
    text-decoration: none;
}

a:hover {
    color: #038814;
    text-decoration: underline;
}

ul {
    text-align: left;
}

hr {
    border: 0;
    border-top: 1px solid  rgb(0, 58, 23);
}

.row {
        display: flex;
}

.column {
        flex: 33.33%;
        padding: 5px;
}


img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, p {
    display: block;
    width: fit-content;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border-radius: 4px;
    padding: 0.3em 0.6em;
    clip-path: polygon(
        8px 0%, calc(100% - 8px) 0%,
        100% 8px, 100% calc(100% - 8px),
        calc(100% - 8px) 100%, 8px 100%,
        0% calc(100% - 8px), 0% 8px
    );
}

ol {
    text-align: left;
}

code {
    display: inline;
    color: #324a72;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border-radius: 4px;
    padding: 0.1em 0.35em;
}

pre {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border-radius: 4px;
    padding: 0.3em 0.6em;
    box-sizing: border-box;
}

pre code {
    display: block;
    width: max-content;
    max-width: 100%;
    color: #1a273e;
    padding: 0;
    white-space: pre;
    background: transparent;
}

ul {
    display: block;
    width: fit-content;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border-radius: 4px;
    padding: 0.3em 0.6em 0.3em 1.8em;
    list-style-position: inside;
}

footer {
    text-align: center;
}

.img_footer {
    text-align: center;
}

.footer-link {
    display: block;
    text-align: center;
}

.footer-img {
    width: 5%;
    max-width: 50px;
    display: block;
    margin: 0 auto;
}

@media (max-width: 600px) {
    body {
        padding-left: 5px;
        padding-right: 5px;
        padding-bottom: 1.25rem;
        margin: 0;
    }

    #page {
        margin-left: 0;
    }

    .footer-img {
        width: 10%;
    }
}

