<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background: #0047ab; /* Cobalt Blue */
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

#logo {
    max-width: 40px; /* Smaller max width for mobile */
    height: auto;
    margin-bottom: 0.5rem;
}

header h1 {
    margin: 15px;
    font-size: 1.5rem;
}

section {
    padding: 20px;
    margin: 20px;
    background: #ffffff;
    border-radius: 8px;
}

#teams .team {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px #ccc dotted;
}

#teams .team:last-child {
    border-bottom: none;
}

h2, h3 {
    color: #0047AB; /* Changed to Cobalt Blue */
}

footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background: #0047ab; /* Cobalt Blue */
    color: #ffffff;
}

/* Responsive adjustments */
@media (min-width: 600px) {
    header {
        flex-direction: row;
        justify-content: center;
        padding: 1.5rem 2rem;
    }

    #logo {
        margin-bottom: 0;
        margin-right: 1.5rem;
        max-width: 80px;
    }

    header h1 {
        font-size: 2.2rem;
    }
} </pre></body></html>