body {
    margin: 0;
    padding: 0;
    background-color: #008080;
    min-height: 100vh;
}

.page {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Header */
.site-header {
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 0 #000000;
}

.site-header h1 {
    font-size: 36px;
    margin: 0 0 8px 0;
    letter-spacing: 2px;
}

.site-header .tagline {
    margin: 0;
    font-size: 14px;
}

/* Sections inherit 98.css .window styling — nothing extra needed */

.window-body {
    padding: 12px 16px;
    line-height: 1.5;
}

.window-body h4 {
    margin-top: 0;
}

/* Contact list */
.contact-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.contact-list li {
    padding: 4px 0;
    font-size: 14px;
}

.contact-list a {
    color: #0000ee;
}

.contact-list a:visited {
    color: #551a8b; /* the proper Web 1.0 purple */
}

/* Footer */
.site-footer {
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    text-shadow: 1px 1px 0 #000000;
    padding: 20px 0;
}

/* Mobile */
@media (max-width: 600px) {
    .page {
        padding: 20px 10px;
    }
    .site-header h1 {
        font-size: 28px;
    }
}

.window-gif {
    text-align: center;
    margin-top: 16px;
}

.window-gif img {
    max-width: 100%;
    height: auto;
    image-rendering: pixelated; /* keeps tiny GIFs crisp instead of blurry when scaled */
}
