/* @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap"); */
/* @import url("https://fonts.googleapis.com/css2?family=Parisienne&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap"); */
/* @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* box sizing */
html {
    box-sizing: border-box;
}
*,
*:before,
*:after {
    box-sizing: inherit;
}

/* vars */
:root {
    --s: 1.5rem;
    --s-font: 25px;
    --s-font-print: 13px;
    --line-height: 1.4;
}
@media (prefers-color-scheme: dark) {
    :root,
  :host {
      color-scheme: dark;
      --c-bg: #0e0e11;
      --c-fg: #cacaca;
      --c-title: #d7d7d7;
      --c-border: seashell;
      --c-bg-accent: black;
      --c-link: chartreuse;
  }
}
@media (prefers-color-scheme: light) {
    :root,
  :host {
      color-scheme: light;
      --c-bg: white;
      --c-fg: black;
      --c-border: lightgray;
      --c-bg-accent: #f0f0f0;
      --c-link: #0000bc;
      --c-title: black;
  }
}
/* native elements */
html {
    font-size: var(--s-font);
    line-height: var(--line-height);
    background-color: var(--c-bg);
    color: var(--c-fg);
    
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}
@media print {
    :root,
  :host {
      --c-bg: transparent;
  }
    html {
        font-size: var(--s-font-print);
        color: black;
    }
    a {
        text-decoration: none;
    }
}

body {
    margin: 0;
    padding: 1rem;
    min-height: 100vh;
}
@media screen {
    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}
@media print {
}

.title {
    /* display: none; */
}
/* default title and text */
h1,
h2,
h3,
h4,
p,
ul {
    margin: 0;
}
h1,
h2,
h3,
h4 {
    margin-bottom: 0;
    color: var(--c-title);
    font-weight: 600;
}
h1 {
    font-size: 1.7rem;
}
h2 {
    font-size: 1.4rem;
    border-bottom: 1px solid;
    margin-bottom: calc(var(--s) / 2);
}
h3 {
    font-size: 1.2rem;
}
ul {
    list-style-position: inside;
    list-style-type: square;
    margin: 0;
    padding: 0;
    padding-left: calc(var(--s) / 3);
}
b {
    font-weight: 600;
}
table {
    margin: calc(var(--s) / 2);
}
table,
tbody {
    border: 1px solid transparent;
}
blockquote {
    margin: 0;
    padding: 0;
    font-style: italic;
}
blockquote p:last-child {
    margin-bottom: 0;
}

a,
a:active,
a:visited {
    color: var(--c-link);
}
a {
    word-break: break-word;
    text-decoration-color: var(--c-link);
}

/* org publish */
#content {
    max-width: 50rem;
}
#postamble {
    display: none;
}
.outline-2 {
    padding-top: calc(var(--s) / 2);
    padding-bottom: calc(var(--s) / 2);
    border-bottom: 1px solid var(--c-bg-accent);
}
.outline-3 {
    margin-bottom: calc(var(--s) / 2);
}

/* org custom meta classes */
.work-meta {
    font-style: italic;
    margin-bottom: 0;
    :is(a) {
        font-style: initial;
    }
}
.work-description {
    /* margin- */
}

.education {
    /* list-style-type: square; */
}

.outline-3:has(.work-meta) {
    :is(h3) {
        line-height: 1.3;
    }
}
