@font-face {
    font-family: "PX Grotesk Screen";
    src: url("/assets/fonts/Px-Grotesk-Screen.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "PX Grotesk";
    src: url("/assets/fonts/Px-Grotesk-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "PX Grotesk";
    src: url("/assets/fonts/Px-Grotesk-Italic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "PX Grotesk";
    src: url("/assets/fonts/Px-Grotesk-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "PX Grotesk";
    src: url("/assets/fonts/Px-Grotesk-Bold-Italic.otf") format("opentype");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "PX Grotesk";
    src: url("/assets/fonts/Px-Grotesk-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "PX Grotesk";
    src: url("/assets/fonts/Px-Grotesk-Light-Italic.otf") format("opentype");
    font-weight: 300;
    font-style: italic;
}

::selection {
    background: #E6E4D9;
    color: #100F0F;

}

::-moz-selection {
    background: #E6E4D9;
    color: #100F0F;
}

html {
    font-size: 18px;
    line-height: 1.6;
}

body {
    font-family: "PX Grotesk", sans-serif;
    font-weight: 300;
    font-size: 1rem;
    padding: 7%;
    margin: 0;
    box-sizing: border-box;
    overflow-x: auto;
    color: #100F0F;
    background-color: #FFFCF0;
}

strong {
    background: #E6E4D9;
    font-weight: 400;
    padding: 0 .2rem;
}

@media (min-width: 1000px) {
    body {
        padding: 100px;
    }
}

#content {
    max-width: 27rem;
    display: block;
    position: relative;
}

.back-arrow {
    opacity: 0.5
}

#logo {
    padding-top: 2rem;
    margin: 0 auto;
    height: 0.75rem;
    opacity: 0.15;
    display: block;
}

#logo path {
    fill: #282726;
}

* {
    max-width: 100%;
}

h1 {
    font-family: "PX Grotesk Screen", sans-serif;
    font-weight: 400;
    font-size: 1rem;
}

h2 {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #B7B5AC;
}

a {
    font-weight: inherit;
    color: #000000;
    text-decoration: underline;
    text-decoration-thickness: 0.05em;
    text-underline-offset: 0.08em;
    opacity: 0.9;
}

a:hover {
    color: #000000;
    opacity: 1;
}

a:visited {
    color: #000000;
}

sup,
.footnote-backref {
    font-weight: 300;
    font-size: 0.7rem;
    opacity: 0.5;
    padding: 0.1rem;
}

blockquote {
    border-left: 0.2rem solid #100F0F12;
    margin: 0;
    padding-left: 1rem;
    color: #B7B5AC;
}

li {
    padding-left: 0.3rem;
    padding-bottom: 0.3rem;
}

ul li {
    list-style-type: square;
}

ul,
ol {
    margin: 0;
    padding-left: 2rem;
}

hr {
    height: 0.2rem;
    border: none;
    margin: 1rem 0;
    background-color: #100F0F12;
}

table {
    border-collapse: collapse;
    font-size: 14px;
}

table th,
table td {
    border: 1px solid #28272630;
    text-align: center;
    padding: 10px;
    background-color: #FFFCF0;
}

table th {
    background-color: #E6E4D9;
    color: #282726;
    font-weight: 500;
}

@media (prefers-color-scheme: dark) {

    ::selection {
        background: #282726;
        color: #DAD8CE;
    }

    ::-moz-selection {
        background: #282726;
        color: #DAD8CE;
    }

    body {
        color: #DAD8CE;
        background-color: #100F0F;
    }

    h2 {
        color: #6F6E69;
    }

    #logo path {
        fill: #DAD8CE;
    }

    a {
        color: #FFFCF0;
    }

    strong {
        background: #282726;
    }

    a:hover {
        color: #FFFCF0;
    }

    a:visited {
        color: #FFFCF0;
    }

    blockquote {
        border-left: 0.2rem solid #DAD8CE12;
        color: #6F6E69;
    }

    hr {
        background-color: #DAD8CE12;
    }

    table th,
    table td {
        border-color: #DAD8CE;
        background-color: #100F0F;
        color: #DAD8CE;
    }

    table th {
        background-color: #282726;
    }

}