/* @import url('https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono|Volkhov&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,700;0,900;1,500&display=swap');

:root {
    --text-color: #333333;
    --bg-color: #E2E2E2;
}
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #E2E2E2;
        --bg-color: #202020;
    }
    .logo img {
        filter: invert();
    }
}
body { 
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Poppins', monospace;
    word-break: break-word;
    padding: 0 5%;
    font-size: 13px;
    line-height: 1.4rem;
    letter-spacing: 0.13em;
}
b, strong {
    font-weight: 700;
}
code {
    font-family: 'Fira Code', monospace;
}
.v-btn {
    margin-top: 36px;
}
.action-button>* {
    display: inline-block;
    font-size: 1rem;
    padding: 0.5rem 1.1rem !important;
    transition: all 0.1s linear;
    box-sizing: border-box;
    color: var(--text-color) !important;
    text-transform: uppercase;
    border: 2px solid var(--text-color) !important;
    border-radius: 0 !important;
    background: transparent !important;
    /* margin: 20px 8px 0 0;   */
    text-decoration: none;
    letter-spacing: 0.1em;
}
.small>* {
    font-size: 0.75rem !important;
}
.container {
    padding: 0 20px;
}
p, span {
    /* margin: 20px 0; */
    /* display: flex; */
    /* line-height: 24px; */
    letter-spacing: 0.05em;
    /* margin: 0px;
    margin-bottom: 24px; */
}
p {
    font-style: normal;
    font-weight: normal;
    margin: 20px 0;
    /* display: flex; */
    margin: 0px;
    margin-bottom: 12px;
}
a {
    color: inherit;
    /* font-weight: 500; */
    text-decoration: none;
    border-bottom: 1px solid var(--text-color);
    color: var(--text-color) !important;
}
p a:hover {
    color: var(--bg-color) !important;
    background: var(--text-color);
}
h1, h2, h3, h4, h5 {
  /* font-family: Roboto Mono; */
  font-weight: 300;
}
h1 {
    text-transform: uppercase;
    font-size: 28px;
    display: inline;
    line-height: 0.9em;
    letter-spacing: 0.1em;
}
h1 a {
    border-bottom: none !important;
}
h2 {
    font-family: Poppins;
    font-style: italic;
    font-size: 20px;
    line-height: 160%;
    margin-top: -9px;
    /* or 35px */
    letter-spacing: 0.1em;
}
h3 {
    letter-spacing: 0.1em;
    font-size: 16px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 160%;
    /* identical to box height, or 26px */

    letter-spacing: 0.1em;
}
h4 {
    letter-spacing: 0.08em;
    font-size: 14px;
}
.grid {
    display: grid;
    padding: 0 12px 64px;
}
.grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 96px 72px;
}
.grid-fit {
    gap: 32px 72px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid-four {
    gap: 32px 72px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.grid>.spacer {
    height: 0;
    /* display: inline; */
}

.col {
    padding: 0 24px 16px !important;
}
.col>* {
    margin-bottom: 24px;
}
.row {
    margin-left: -36px;
    margin-right: -36px;
    /* margin-top: 96px; */
    margin-bottom: 64px;
}
.group-header {
    margin-top: 32px;
    background: var(--text-color);
    color: var(--bg-color);
    text-transform: uppercase;
    padding: 2px 10px 2px 16px;
    letter-spacing: 0.1em;
    width: 100%;
}
li {
    line-height: 24px;
}
ul ul {
    padding-left: 16px;
}