/* Base colors and fonts */
body {
    background-color: #fdf6e3;
    color: #073642;
    font-family: "Courier New", monospace;
    margin: 0;
    padding: 20px;
    line-height: 1.5;
}

h1, h2 {
    font-family: "Georgia", serif;
    color: #586e75;
}

nav {
    margin-bottom: 15px;
    background-color: #eee8d5;
    padding: 8px;
    border: 2px solid #073642;
}

nav a {
    text-decoration: none;
    color: #586e75;
    margin-right: 15px;
    font-weight: bold;
}

nav a:hover {
    color: #b58900;
}

hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

/* Container for videos and essays */
.container {
    max-width: 800px;
    margin: 0 auto;
}

/* Iframe video styling */
iframe {
    border: 2px solid #073642;
    padding: 2px;
    margin-bottom: 20px;
}

/* Lists */
ul {
    list-style-type: square;
}

/* Guestbook messages */
.guestbook-entry {
    border: 1px solid #586e75;
    background-color: #fdf6e3;
    padding: 8px;
    margin-bottom: 10px;
    font-family: "Courier New", monospace;
}

