/* For anyone who may be reading this, hello! It's
good to see you here. Perhaps this code can be
useful to you. */

html {
    background-color: #222;
}

body {
    color: white;
    /* Baskerville is preferred, Georgia is fine, then use Times/serif as fallback */
    font-family: Baskerville, Georgia, "Times New Roman", Times, serif;
    margin: 0;
}

.content-container {
    width: 100%;
    font-size: 14pt;
}

.main-content {
    margin: auto;
    justify-content: center;
    text-align: justify;
    padding: 5vw;
    width: 50%;
    line-height: 1.5;
}

div#navbar {
    margin-top: -3vh;
    padding-top: 1vh;
    padding-bottom: 4vh;
    background-color: #131313;
    position: sticky;
    top: 0;
    text-align: center;
}

a {
    color: wheat;
    text-decoration: none;
}

img {
    border-radius: 10pt;
    width: 100%;
}

figure.fullwidth {
    margin: 0;
}

figure.smallcaption {
    font-size: 12pt;
}

figure figcaption {
    padding: 0 2%;
    text-align: left;
}

@media (max-aspect-ratio: 1/1) {
    .content-container {
        font-size: 16pt;
    }

    .main-content {
        width: auto;
        /* This is what Claude came up with, and it's pretty good I suppose */
        padding: 6vw 7vw;
    }

    div#navbar {
        margin-top: 0;
        padding-top: 2vh;
        padding-bottom: 3vh;
        font-size: 0.9em;
    }

    figure {
        margin: 5%;
    }

    figure figcaption {
        padding: 0;
    }
}