* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, Times, 'Times New Roman', serif;
    font-size: 1em;
    line-height: 1.5;
    color: #000000FF;
}

nav {
    justify-content: space-between;
    align-items: left;
    padding: 1rem 2%;
    position: sticky;
    top: 0;
    background: #fff;
}

.logo {
    width: 30vw;
    min-width: 200px;
    max-width: 350px;
}

nav ul {
    list-style: none;
    line-height: 1.2;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #039;
}

nav a:hover {
    color: #039;
    text-decoration: underline;
}

#home {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2,
h3,
h4 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}

div.img {
    padding-top: 1rem;
    display: block;
}

div.video {
    padding-top: 1rem;
    display: block;
}

div.sponsor {
    margin: 4rem 2%;
}

div.roman {
    font-size: 0.7em;
    text-align: right;
    margin: 1rem 2%;
}

section {
    padding: 4rem 2%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
    }
}

highlight {
    background-color: yellow;
}

blockquote {
    color: #990F3D;
    padding-left: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

sup {
    font-size: 0.6em;
    position: relative;
}

table {
    width: 350px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #000000FF;
    font-size: 0.7em;
    text-align: right;
    background-color: #FFFFFFFF;
    border-collapse: collapse;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

table th,
td {
    border-bottom: 0.1rem solid #CCCCCCFF;
    padding: 0.25rem 0.5rem;
    vertical-align: middle;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}