:root {
    --mono-font:
        "Berkeley Mono", "JetBrains Mono", "Fira Code", San Francisco Mono,
        Monaco, "Consolas", "Lucida Console", "DejaVu Sans Mono",
        "Bitstream Vera Sans Mono", monospace;
    --sans-font:
        -apple-system, BlinkMacSystemFont, "avenir next", avenir, helvetica,
        "helvetica neue", ubuntu, roboto, noto, "segoe ui", arial, sans-serif;
    --bg: #fff;
    --bg: light-dark(#fff, #111);
    --bg-dim: #fff;
    --bg-dim: light-dark(#fff, #191919);
    --text: #111;
    --text: light-dark(#111, #ccc);
    --text-dim: #333;
    --text-dim: light-dark(#333, #999);
    --link: var(--text);
    --link-blue: blue;
    --link-blue: light-dark(blue, #b5b5ff);
    --link-visited: #333;
    --link-visited: light-dark(#333, #aaa);
    --border: #333;
    --border: light-dark(#333, #888);
    --border-dim: #eee;
    --border-dim: light-dark(#eee, #555);
}
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    line-height: 1.6;
    font-size: 1rem;
    font-family: var(--sans-font);
}
footer {
    font-size: 0.8rem;
}
a {
    color: var(--link);
}
a:hover {
    text-decoration: underline;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background-color: var(--bg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.projects {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
}

.projects li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 5px;
    background-color: var(--bg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.photos {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    grid-auto-flow: dense;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
}

.photos img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
    height: 150px;
}

img {
    width: 100%;
    border-radius: 5px;
}

.micro {
    font-size: 0.8rem;
    color: var(--dim);
}

.tag {
    padding-inline: 6px;
    border-radius: 8px;
    background-color: var(--border-dim);
    font-size: 0.75rem;
    text-transform: lowercase;
    font-family: var(--mono-font);
    color: var(--dim);
}

.name {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.009em;
    text-decoration: none;
}

div.body img {
    width: 100%;
    max-width: 640px;
    height: auto;
}
.only-print {
    display: none;
}
a {
    color: var(--link);
    text-decoration-skip-ink: auto;
    text-decoration: underline;
}
a:visited {
    color: var(--link-visited);
}
ul {
    margin: 1rem 0;
}
ul ul {
    margin: 0;
}
br {
    line-height: 1em;
}
h2 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.009em;
}
h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.009em;
}
    .header {
        position: absolute;
        top: 42px;
        right: 50%;
        margin-right: 340px !important;
        letter-spacing: -0.009em;
    }
}
