/* The quintessential Geocities aesthetic */

body {
    /* Using a tiled starry background */
    background-image: url('https://web.archive.org/web/20091024032115/http://geocities.com/the_f_files/space-bg.jpg');
    background-color: #000000;
    color: #00FF00; /* Classic "Matrix" green */
    font-family: "Times New Roman", Times, serif;
    margin: 20px;
}

h1 {
    text-align: center;
    font-size: 50px;
    text-shadow: 3px 3px #FFFFFF;
}

marquee {
    background-color: #0000FF;
    color: white;
    font-weight: bold;
    border: 3px ridge #C0C0C0;
    padding: 5px;
}

.main-content {
    display: flex;
    margin-top: 20px;
}

nav {
    width: 20%;
    border: 4px outset #808080;
    background-color: #C0C0C0;
    color: black;
    padding: 10px;
}

nav a {
    color: blue;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

nav a:hover {
    background-color: yellow;
    color: red;
}

.content {
    width: 80%;
    padding: 20px;
    border: 5px double #FF00FF;
    background-color: rgba(0, 0, 0, 0.7); /* Slightly transparent so we see the stars */
    margin-left: 10px;
}

footer {
    text-align: center;
    margin-top: 50px;
    border-top: 2px solid white;
}

/* Make links look old school */
a {
    color: #FFFF00;
}