:root {
    --fg: #08090a;
    --bg: #f5f5f5;
    --a1: #99cbe6; /* Accent color 1 */
    --a2: #9dd1f1;
    --a3: #3d3b3f;
    --a4: #e8e8e8;
}

@font-face {
    font-family: "Nebula";
    src: URL("fonts/NebulaSans-Medium") format("truetype");
}

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: "Nebula", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: normal;
    text-align: justify;

}

h1 {
    font-family: "Nebula", monospace;
    font-style: normal;
    font-size: xxx-large;
    text-align: center;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

small {
    padding-top: 0px;
    margin-top: 0px;
}

h2 {
    padding-bottom: 0px;
    margin-bottom: 0px;
}

ul {
    padding-top: 0px;
    margin-top: 0px;
}

.mid {
    padding-top: 1%;
    padding-bottom: 5%;
    max-width: 800px;
    padding-left: 5%;
    padding-right: 5%;
    margin: 28px auto 0;
}

a:has(.callout) {
    color: inherit;
    text-decoration: none;
}

.callout {
    background: repeating-linear-gradient(
        135deg,
        var(--a1),
        var(--a1) 10px,
        var(--a2) 10px,
        var(--a2) 20px
    );
    border-radius: 10px;
    width: 40%;
    padding: 10px;
    margin: 10px auto 0;
    text-align: center;
}

.byline {
    text-align: center;
    padding-top: 0px;
    margin-top: 0px;
    color: var(--a3);
    font-size: medium;
    font-weight: 300;
    font-family: "Nebula", monospace;
}
.icons {
    text-align: center;
    padding-bottom: 20px;
}

.icon_link {
    position: relative;
    text-decoration: none;
    color: var(--fg);
}

.icon {
    width: 2em;
    height: auto;
    padding: 5px;
}

.description {
    visibility: hidden;
    background-color: var(--a3);
    color: var(--bg);
    text-align: center;
    padding: 5px;
    position: absolute;
    top: 1em;
    left: 50%;
    transform: translateX(-50%);
    font-size: small;
}

.icon_link:hover .description {
    visibility: visible;
}

summary {
    cursor: pointer;
    outline: none;
    padding: 5px;
}

summary:hover {
    background-color: var(--a4);
}

.collapsible-li {
    list-style: none;
    margin-left: -20px;
}

.collapsible-li summary {
    display: list-item;
    list-style-type: disclosure-closed;
    cursor: pointer;
    font-weight: normal;
}

.collapsible-li details[open] summary {
    list-style-type: disclosure-open;
}

.collapsible-li ul {
    padding-left: 20px;
}

.item-title {
    font-weight: 600;
}

.item-date {
    white-space: nowrap;
    margin-left: 1rem;
}
.item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.article {
    text-align: justify;
    text-justify: inter-word;
}
