body {
    color: #FFFEF2;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    line-height: 1.5em;
}
h1 {
    font-size: 300%;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    line-height: 0.8em;
}
h2 {
    font-size: 160%;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    margin: 0em 0em 1em;
}
a {
    color: #888;
}
#wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: rgb(59, 97, 93);
    padding: 1em 1em 150px 1em;
    gap: 1.5em;
    background-image: linear-gradient(90deg, #3b615d, rgba(0, 0, 0, 0.0), #3b615d), url("../images/footer-cropped.png");
    background-position: bottom;
    background-repeat: repeat-x;
}
#header {
    display: flex;
    flex-direction: row;
    gap: 0em;
    max-width: 760px;
}
#header img {
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
#header h1 {
    flex-shrink: 1;
}
.card-single {
    max-width: calc(760px - 3em);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow:inset 0px 0px 25px 2px rgba(255, 255, 255, 0.1);
    border-radius: 1em;
    font-size: 125%;
    padding: 1.5em;
}
.card-column {
    display: flex;
    flex-direction: row;
    max-width: 760px;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow:inset 0px 0px 25px rgba(255, 255, 255, 0.1);
    border-radius: 1em;
}
.card-column .left {
    flex-basis: 240px;
    flex-shrink: 0;
    overflow-y: hidden;
}
.card-column .left img {
    border-radius: 1em;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-column .right {
    flex-shrink: 1;
    padding: 2em;
}
@media (max-width: 600px) {
    .card-column {
        flex-direction: column;
    }
    .card-column .left {
        flex-basis: 340px;
    }
}
.content {
    max-width: calc(760px - 3em);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow:inset 0px 0px 25px 2px rgba(255, 255, 255, 0.1);
    border-radius: 1em;
    padding: 1.5em;
}
#page-footer {
    padding: 2em;
    font-size: 80%;
    color: #888;
    text-align: center;
}