<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --main-color: #101010;
    --base-color: #faf5f5;
    --red: #c71818;
    --highlight-color: var(--red);
    --aux-color: #8a8080;
    --aux-color-2: #484848;
    --page-bg: var(--base-color);

    --main-font: 'Roboto Slab', serif;
    --aux-font: 'Roboto Condensed', serif;
    --display-font: 'Bowlby One SC';
}

*, ::before, ::after {
    font-family: inherit;
    color: var(--main-color);
    font-weight: 300;
    transition: all 0.3s linear;
}

.hidden {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: -100%;
}

html,body {
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--page-bg);
    font-size: 18px;
    position: absolute;
    z-index: -100;
    font-family: var(--main-font);
}

h1, h2, h3, h4, h5, h6, p {
    padding: 0;
    margin: 0;
    font-size: inherit;
}

p {
    line-height: 1.25;
}

strong {
    font-weight: bolder;
}

em {
    font-style: normal;
    background-color: var(--aux-color);
    color: var(--base-color);
    padding: 0 .5ch;
}

a {
    color: var(--red);
    font-weight: bolder;
    text-decoration: none;
    background: linear-gradient(var(--red), var(--red));
    background-repeat: no-repeat;
    transition: all .1s linear;
    background-size: calc(100% - 2ch) 2px;
    background-position: 1ch 100%;
}

a:hover {
    background-size: 100% 2px;
    background-position: 0 100%;
}

main {
    width: 100%;
    padding: 0;
    margin: 0;
}

main &gt; section {
    width: 90%;
    margin: 0 auto 5%;
}

ol,ul,li {
    padding: 0;
    margin: 0.5em 0;
}

li::marker {
    color: var(--highlight-color);
    font-weight: bold;
}

hr {
    width: 70%;
    margin: 5vh auto;
}

figure {
    margin: 5vh 0;
    display: block;
    min-height: auto;
    position: relative;
}

figure &gt; img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--default-color);
}

figcaption {
    position: absolute;
    bottom: 1ch;
    left: 1ch;
    width: fit-content;
    max-width: 50%;
    height: fit-content;
    padding: .75em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cherry-blossom-pink);
    box-shadow: 0 0 10px var(--chocolate-cosmos);
    text-align: center;
    font-size: 0.75em;
    font-weight: bold;
    color: var(--default-color);
    border-radius: 5px;
}

section.gallery {
    width: 100%;
    padding: 5vh 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    overflow-x: scroll;
    overflow-y: hidden;
}

section.gallery &gt; article {
    width: 24vw;
    height: 32vw;
    background-color: var(--cherry-blossom-pink);
    border-radius: 20px;
}

section.gallery &gt; article &gt; img {
    width: 100%;
    height: 16vw;
}

section.date-list {
    display: flex;
    flex-direction: column;
}

section.date-list &gt; p {
    margin-top: 1em;
}

section.date-list &gt; article {
    border: 2px solid var(--aux-color);
    border-radius: 5px;
    padding: 5px;
    margin-top: 10px;
}

section.date-list &gt; article &gt; .date {
    font-weight: bolder;
    font-size: .75em;
    color: var(--chocolate-cosmos);
}

@media screen and (min-width: 768px) {

    html, body {
        font-size: 24px;
    }

    main &gt; section {
        width: 70%;
    }

}</pre></body></html>