:root{
    --red: #d60000;
    --darkgrey: #021519;
}
body {
    display: flex;
    justify-content: center;
    margin: 0;
    background-color: #454545;
    font-family: serif;
}
#split { /* mobile */
    display: grid;
    width: 100vw;
    grid-template-columns: 1fr;
    grid-template-rows: min-content 1fr;
    min-height: 100vh;
    grid-template-areas: "topbar" "content" "sidebar";
}
#sidebar { /* mobile */
    grid-area: sidebar;
    display: none;
    flex-direction: column;
    align-items: center;
    background: var(--darkgrey);
}
#topbar { /* mobile */
    grid-area: topbar;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px;
    background-color: var(--darkgrey);
    height: 100%;
    box-sizing: border-box;
}
@media (min-width: 900px) {
    #split { /* desktop */
        width: 80vw;
        max-width: 1200px;
        grid-template-columns: min-content 1fr;
        grid-template-rows: 0px 1fr;
        grid-template-areas: "topbar topbar" "sidebar content";
    }
    #sidebar { /* desktop */
        display: flex;
    }
    #topbar { /* desktop */
        display: none;
    }
}
#topbar img {
    height: 128px;
}
#topbar a, #sidebar a {
    text-decoration: none;;
    color: var(--red);
    padding: 8px;
}
#topbar > div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
    height: min-content;
}
#sidebar img {
    width: 240px;
    margin: 32px;
}
#content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #e0e0d4;
    padding: 32px 0;
}
blockquote {
    padding: 16px 0;
    margin: 0 32px;
    border-top: 1px solid var(--red);
    border-bottom: 1px solid var(--red);
}
span > blockquote {
    padding: 8px;
    margin: 0;
    border: 1px dashed var(--red);
}
span {
    margin: 0 32px;
}
i.red {
    color: var(--red);;
}
img.oz {
    margin: 0 32px;
    max-width: 100%;
    height: 100%;
}
.tiled-bg {
    position: relative;
    background-image: url('./images/stele_tile.png');
    background-repeat: repeat;
    background-size: 400px 400px;
}
.tiled-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}
.tiled-bg > * {
    position: relative;
    z-index: 1;
}
#contact-form {
    display: flex;
    flex-direction: column;
    margin: 16px 0;
    gap: 4px;
}
#contact-form input, #contact-form textarea {
    margin-bottom: 16px;
}
#contact-form p {
    font-style: italic;
    margin-bottom: 0;
}
#contact-form p.hidden {
    display: none;
}
ul {
    list-style: none;
    padding: 0;
}
li {
    padding-bottom: 16px;
}
li:last-child {
    padding-bottom: 0;
}
li i.tab, blockquote i.tab {
    display: block;
    font-style: normal;
    padding: 8px 32px;
    padding-bottom: 0;
}
.pt {
    padding-top: 16px;
}
.mb {
    margin-bottom: 16px;
}
object {
    cursor: pointer;
}