:root{
    --red: #d60000;
    --darkgrey: #021519;
}
body {
    display: flex;
    justify-content: center;
    margin: 0;
    background-color: #454545;
}
#split {
    display: grid;
    width: 80vw;
    grid-template-columns: min-content 1fr;
    min-height: 100vh;
}
#sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--darkgrey);
}
#sidebar a {
    text-decoration: none;;
    color: var(--red);
    padding: 8px 0;
}
#sidebar img {
    width: 240px;
    margin: 32px;
}
#content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #e0e0d4;
    padding: 32px 0;
}
blockquote {
    padding: 16px 0;
    border-top: 1px solid var(--red);;
    border-bottom: 1px solid var(--red);;
    margin: 0 32px;
}
span {
    margin: 0 32px;
}
i.red {
    color: var(--red);;
}
img.oz {
    margin: 0 32px;
    max-width: 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;
}