/* Basic reset / defaults */
*,
*::before,
*::after
{
    box-sizing: border-box;
}

html
{
    font-size: 100%;
}

body
{
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    color: #222;
    background-color: #F8F8F8;
}

/* Links */
a
{
    color: #005EA5;
    text-decoration: none;
}

a:hover,
a:focus
{
    text-decoration: underline;
}

/* Layout helpers */
.container
{
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header / nav */
header
{
    background: #3891CF; /* was 222 */
    color: #FFF;
}

#logo
{
    font-size: 1.35rem;
    font-weight: 600;
    display: inline-block;
    padding: 0.75rem 0;
    color: #FFF;
}

header .container
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.social-icons
{
    list-style: none;
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.social-icons .icon
{
    display: inline-block;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.75rem;
    font-style: normal;
    color: #FFF;
}

nav
{
    width: 100%;
    margin-top: 0.5rem;
}

nav ul
{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
    padding: 0 0 0.75rem;
}

nav li a
{
    color: #FFF;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

nav li a .icon
{
    margin-right: 0.25rem;
}

/* Active menu state */
.activePage
{
    font-weight: 700;
    border-bottom: 2px solid #FFF;
}

/* Hero banner */
section[role="banner"]
{
    background: #F0F0F0;
    border-bottom: 1px solid #DDD;
}

/* Full-width black bar with title + tagline */
section[role="banner"] > hgroup
{
    background: #111;
    color: #FFF;
    padding: 1.25rem 1rem;
    margin: 0 0 1.5rem 0;
}

section[role="banner"] > hgroup h1
{
    margin: 0;
    font-size: 2rem;
}

section[role="banner"] > hgroup h2
{
    margin: 0.35rem 0 0;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Main banner content */
section[role="banner"] article
{
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

section[role="banner"] .post
{
    flex: 1 1 320px;
}

section[role="banner"] aside
{
    flex: 0 0 280px;
}

section[role="banner"] img
{
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Buttons */
.button
{
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.9rem;
    border-radius: 4px;
    background: #005EA5;
    color: #FFF;
    font-size: 0.95rem;
    margin-top: 0.75rem;
}

.button .icon
{
    margin-left: 0.35rem;
}

.button:hover
{
    background: #00457C;
    text-decoration: none;
}

/* Columns below hero */
section.container
{
    padding: 2rem 1rem 3rem;
}

.columns
{
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.columns article
{
    flex: 1 1 220px;
}

figure
{
    margin: 0;
}

figure img
{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    /* No rotation, no animation */
    transform: none;
    transition: none;
}

figcaption
{
    margin-top: 0.75rem;
}

/* Footer */
footer
{
    border-top: 1px solid #DDD;
    background: #F4F4F4;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
}

footer p
{
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
}

footer a
{
    color: #005EA5;
}

/* Simple responsive tweaks */
@media (max-width: 700px)
{
    header .container
    {
        flex-direction: column;
        align-items: flex-start;
    }

    nav
    {
        margin-top: 0.25rem;
    }

    section[role="banner"] article
    {
        flex-direction: column;
    }

    section[role="banner"] aside
    {
        flex: 1 1 auto;
    }

    footer p
    {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* my additions */

.content
{
    display: table-cell;
    padding: 10px 0 50px 30px;
}

img
{
    border: 1px solid #F0F0F0;
    padding: 2px;
}

table
{
    width: 100%;
    border-color: #CCC;
    border-color: red;
}

th, td
{
    border-color: #CCC;
    border-color: red;
    padding: 4px 10px;
}

th
{
    background: blue;
    color: white;
    text-align: left;
}

tr:nth-child(even) td
{
    background: #F6F6F6;
}

.floatR
{
    float: right;
}
.floatL
{
    float: left;
}
.large
{
  font-size: xx-large
}