﻿/* full page layout */
html, body {
    margin: 0;
    min-height: 100%;
    background-color: #000;
}

/* content wrapper */
.pageContent {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 24px 40px;
    box-sizing: border-box;
}

/* the text block */
/*.aboutBlurb {
    max-width: 700px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}*/
.aboutBlurb {
    max-width: 700px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    padding: 20px;
}

/* top right nav */
.topNav {
    position: absolute;
    top: 20px;
    right: 24px;
    display: flex;
    gap: 20px;
}

    /* links */
    .topNav a {
        text-decoration: none;
        color: #005681;
        font-family: Arial, sans-serif;
        font-size: 14px;
        font-weight: 500;
        transition: opacity 0.2s ease;
    }

        .topNav a:hover {
            opacity: 0.6;
        }

@media (max-width: 600px) {
    .pageContent {
        padding: 70px 16px 30px;
    }

    .aboutBlurb {
        font-size: 16px;
    }

    /* 👇 ADD THIS */
    .topNav {
        top: 14px;
        right: 16px;
        gap: 16px;
    }

        .topNav a {
            font-size: 16px;
            font-weight: 600;
        }
}