html {
    max-width: 640px;
    margin: 0 auto;
    font-family: monospace;
}

body {
    padding: 0;
    margin: 0;

    background-color: black;
    color: white;
    font-size: 14px;
}

a {
    color: darkviolet;
}

a:visited {
    color: darkviolet;
}

a:hover {
    color: white;
}

a.inactive {
    text-decoration: line-through;
    color: white;
}

p {
    padding: 0;
    margin: 0;
}

p:not(:last-child) {
    margin-bottom: 12px;
}

ul {
    padding-left: 16px;
    padding-right: 16px;
}

ul:not(:last-child) {
    padding-right: 16px;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-row.content>*:not(:last-child) {
    border-right: 1px solid white;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-1 {
    flex: 1;
}

.homepage-link {
    margin-top: 6px;
    margin-bottom: 6px;
}

.content-main {
    border: 1px solid white;
}

.sidebar {
    flex: 1.2;
    border-right: 1px solid white;
}

.sidebar-header {
    border-bottom: 1px solid white;
    padding: 4px;
    font-weight: 800;
}

.content {
    padding: 12px;
    flex: 3;
}

a.button {
    color: DarkViolet;
    padding: 4px;
    border-bottom: 1px solid white;
}

a.button:visited {
    color: DarkViolet;
}

a.button:hover {
    color: white;
}

.title {
    text-align: center;
    border-bottom: 1px solid white;
    font-size: 24px;
    font-weight: 800;
    padding: 12px;
    text-transform: uppercase;
}

.about-sidebar {
    border-right: 1px solid white;
}

.content-header {
    font-size: 24px;
    font-weight: 800;
}

.content-subheader {
    font-style: italic;
    font-size: 14px;
    font-weight: 800;
}

.info {}

.info-line {
    justify-content: space-between;
    border-bottom: 1px solid white;
}

.info-line:last-of-type {
    border-bottom: none;
}

.info-type {
    padding: 1px 4px;
    font-weight: 800;
}

.info-content {
    padding: 1px 4px;
}

.about-passage {
    flex: 2;
    padding: 12px;
}

.about-links {}

.about-link {
    color: DarkViolet;
    border-top: 1px solid white;
    padding: 2px;
}

.about-link a:visited {
    color: DarkViolet;
}

.about-link a:hover {
    color: white;
}

.about-link:last-child {
    border-bottom: 1px solid white;
}

.flex-row.shrine {
    width: 100%;
}

.shrines-index {
    margin-top: 12px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.shrine-line {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.shrine-img {
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 12px;
}

.shrine-title {
    text-align: center;
}

.links {
    display: flex;
    flex-direction: column;
}

.link {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid white;
}

.link-line:last-of-type {
    border-bottom: none;
}

.link-header {
    border-bottom: 1px solid white;
    padding: 2px;
}

.link-title {
    display: flex;
    flex: 1;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.link-notes {
    padding: 12px;
    flex: 3
}