/* Reset modern browser defaults */
body, h1, h2, p, ul, li, a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-family: serif; /* Early web pages used serif fonts like Times New Roman */
    color: #000;
    background-color: #c0c0c0; /* Classic gray background */
}

/* Basic body styling */
body {
    margin: 20px;
    line-height: 1.5;
}

/* Marquee styling */
marquee {
    background-color: #000;
    color: #fff;
    padding: 5px;
    margin-bottom: 20px;
}

/* Headers */
h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

h2 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Intro text */
.intro {
    margin-bottom: 20px;
}

/* Paragraphs */
p {
    margin-bottom: 10px;
}

/* Lists */
ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

ul li {
    margin-bottom: 15px;
}

ul li strong {
    font-weight: bold;
}

/* Links */
a {
    color: #00f; /* Classic blue links */
    text-decoration: underline;
}

a:hover {
    color: #f00; /* Red on hover */
}

/* Horizontal rule */
hr {
    border: 0;
    height: 1px;
    background: #000;
    margin: 20px 0;
}

/* Footer */
em {
    font-style: italic;
}
/* Hit Counter Styling */
#hitcounter {
    background-color: #000;
    /* Black background */
    color: #fff;
    /* White text */
    padding: 5px 10px;
    display: inline-block;
    font-family: monospace;
    /* Monospaced font for that retro feel */
    font-size: 16px;
    margin-top: 20px;
}

#counter {
    font-weight: bold;
}