body {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: sans-serif;
}

.banner {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center 35%;
    margin-bottom: 1.5rem;
}

.blurb {

}

.title-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* roughly space-y-2 */
    margin-bottom: 1.5rem; /* roughly mb-8 */
}

.title-container h1,
.title-container p {
    margin: 0;
}

.container {
    max-width: 48rem; /* roughly max-w-3xl */
    padding-top: 4rem; /* roughly pt-16 */
    width: 100%;
    padding-left: 2rem; /* roughly px-4 */
    padding-right: 2rem; /* roughly px-4 */
}

.links {
    margin-bottom: 2rem; /* roughly mb-8 */
}

.links a {
    text-decoration: underline;
    color: inherit;
    font-weight: normal;
    margin-right: 1rem;
}


/* Main content */
main {
    margin-top: 2rem;
    line-height: 1.6; /* easier to read paragraphs */
    font-size: 1rem;
}

/* Section headings */
main h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem; /* slightly larger than body text */
    font-weight: 600;
}

/* Paragraphs inside main */
main p {
    margin-bottom: 1rem;
}

/* Images inside main */
main img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem 0; /* spacing around images */
    border-radius: 4px; /* subtle rounding */
}

/* Optional: sections within main */
main section {
    margin-bottom: 2rem; /* space between sections */
}

/* Example layout for multiple sections */
main section h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.meimg {
    width: 50%;
    height: auto;
    object-fit: cover;
    object-position: center;
    margin-bottom: 1.5rem;

}

/* Mobile / small screens */
@media (max-width: 640px) {
    .banner {
        height: 120px; /* smaller height on mobile */
    }

    .meimg {
        width: 100%;
    }
}
.name {
    font-size: 1.25rem; /* roughly text-4xl */
    font-weight: normal;
}

/* Firefox */
* {
    scrollbar-width: thin;        /* makes it smaller */
    scrollbar-color: #999 transparent;  /* thumb + track */
}

/* Chrome, Edge, Safari */
*::-webkit-scrollbar {
    width: 6px;     /* horizontal = height */
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 4px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #666;
}