@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

body {
    position: relative;
    margin: 0;
    font-size: small;
    color: #000;
    background-color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: stretch;
    overflow-x: clip;
}

img, .albums {
    animation: fadeIn 1.5s 1 forwards;
}

::selection {
    background-color: #000;
    color: #fff;
}

a {
    color: #000;
    background-color: #7ce2f0;
    text-decoration: none;
}

a:visited {
    color: #000;
    background-color: #7ce2f0;
    text-decoration: none;
}

a:hover {
    color: #000;
    background-color: #fdfdb0;
    text-decoration: underline;
}

h2 {
    color: #fff;
    background-color: #000;
    text-align: right;
    font-weight: normal;
    font-family: monospace;
    line-height: 18px;
    height: 20px;
    font-size: 14px;
    padding-right: 5px;
    margin: 0;
}

.dashedbox {
    width: 760px;
    margin: 4px;
    margin-top: 80px;
    margin-bottom: 20px;
    padding: 0px;
    border-color: #000;
    border-style: dashed;
    border-width: 1px;
}

.sidebar video {
    display: block;

    height: 100vh;
    height: 100dvh;
    width: auto;

    position: sticky;
    top: 0;

    margin: 0;
    z-index: 0;
}

.leftbox {
    width: 250px;
    float: left;

    font-size: 9pt;
}

.leftboxpadding {
    padding: 10px;
    color: #fff;
    background-color: #000;
    font-size: x-small;
}

.leftboxpadding img {
    border: 0;

    max-width: 100%;
    height: auto;
    display: block;
}

.rightbox {
    width: 510px;
    margin-left: 249px;
    border-left: #000;
    border-left-style: dashed;
    border-left-width: 1px;
}

.blogimg {
    float: left;
    display: table;
    margin: 5px;
}

.blogimg img {
    display: block;
    object-fit: contain;
}

.blogcaption {
    display: table-caption;
    caption-side: bottom;
    text-align: center;
    font-style: italic;
    font-size: x-small;
    padding-top: 0px;
}

.blogtext {
    padding: 5px;
    margin: 0;
    margin-top: -15px;
}

.eversince {
    max-height: 100vh;
    pointer-events: none;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
}

.footnotes {
    font-family: monospace;
    font-size: 10px;
    text-align: center;
    padding: 5px;
    display: flex;
}

.footnotes p {
    background-color: rgba(0, 0, 0, 0.1);
}

.footnotes img {
    display: block;
    margin: 0;
    padding-right: 5px;
    height: 50px;
    pointer-events: none;
}

