﻿html, body {
    height: 100%;
    margin: 0;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #000;
    padding: 24px;
    box-sizing: border-box;
}
.splashLogo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .splashLogo img {
        display: block;
        width: min(90vw, 700px);
        height: auto;
        /* branded glow */
        filter: drop-shadow(0 0 6px rgba(0, 86, 129, .3)) drop-shadow(0 0 16px rgba(0, 86, 129, 0.5)) drop-shadow(0 0 32px rgba(0, 86, 129, 0.5));
    }

/* 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;
        }