/* * 1997 Style Sheet 
 * Minimal CSS for a classic Geocities/Angelfire look.
 * We prioritize basic colors and textures over modern layout.
 */

/* * The Body Background: 
 * We use a tiled background pattern, which was very common. 
 * This texture simulates a busy, low-res grey marble/linen.
 */
body {
    background-color: #C0C0C0; /* Web-safe Silver/Grey fallback */
    background-image: url('https://placehold.co/10x10/888888/888888/jpg?text=.'); /* Simulating a tiled, busy texture */
    font-family: Arial, Helvetica, sans-serif; /* A simple, common sans-serif font */
    color: #000000;
    margin: 0;
    padding: 0;
}

/* * Hyperlink Styling: 
 * Reverting to classic default colors. No fancy hover effects!
 */
a:link {
    color: #0000FF; /* Classic blue */
}

a:visited {
    color: #800080; /* Classic purple/maroon */
}

a:hover {
    color: #FF0000; /* Subtle change on hover is allowed, but must be simple */
}

/* Ensure the main container is centered (handled by <center> in HTML, but good practice) */
.main-container {
    max-width: 900px;
    margin: 0 auto;
    border: 3px solid #000000; /* Add a chunky, 3D-effect border to the content box */
    padding: 10px;
}

/* Right-side navigation background */
.sidebar {
    background-color: #CCCCCC;
}

/* Ensure all images (GIF placeholders) look blocky and low-res */
img {
    border: 1px solid #000000;
}

