body {
    font-size: 1em;
    color: #333;
    font-family: ui-serif, "Noto Serif", Georgia, "Times New Roman", Times, serif;
    font-weight: normal;
    margin: 0 auto;
    padding: 0 10px;
    background-color: #fff;
}
header {
    width: 100%;
    border-bottom: 1px solid #000;
}
#svg-logo {
    width: 175px;
    padding: 0;
    margin: 10px auto;
    fill: #000;
    display: block; /* Show SVG by default */
}
img {
    max-width: 100%;
    height: auto;
}
header p {
    display: none;
}
header .fallback {
    display: none; /* Hide h1 when SVG is supported */
}
object:not(.svg-title):not([data]) + header .fallback {
    display: block; /* Show h1 when SVG is not supported */
}

main p {
    font-family: -apple-system, sans-serif;
    font-weight: 300;
    font-size: 0.75em;
    padding: 0;
    margin: 0 0 1.75em;
}
a:link,
a:visited {
    text-decoration: none;
    color: #000;
}
a:hover,
main p {
    color: #666;
}
h2 {
    line-height: 1.25;
    margin: 0 0 1em;
    padding: 0.5em 0 0;
    border-bottom: 1px solid #ccc;
    background-color: #f5f5f5;
    font-weight: normal;
}
h3 {
    line-height: 1.25;
    margin: 0 0 0.25em;
    padding: 0;
    font-weight: normal;
}
/* Tablets */
@media (min-width: 481px) {
    #svg-logo {
        width: 225px;
    }
}

/* Small Laptops */
@media (min-width: 769px) {
    body {
        margin-top: 20px;
        padding: 0 20px;
    }
    main section div {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Creates 2 equal-width columns */
        gap: 20px; /* Optional: adds space between columns */
    }
}

/* Desktops */
@media (min-width: 1024px) {
    #svg-logo {
        width: 300px;
    }
    body {
        max-width: 1100px;
    }
    main section div {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr; /* Creates 3 equal-width columns */
        gap: 20px; /* Optional: adds space between columns */
    }
}

/* Large Desktops */
@media (min-width: 1201px) {
}