@charset "utf-8";
/* CSS Document */

/* General Styles */
body {
    font-family: 'Garamond', serif;
    background-color: #1e1b18;
    color: #f4e9d8;
    margin: 0;
    padding: 0;
}

/* Navigation Bar */
nav {
    background: #3a2a20;
    padding: 10px;
    text-align: center;
    border-bottom: 3px solid #8b5a2b;
}

nav a {
    color: #f4e9d8;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s ease-in-out;
    border-radius: 5px;
}

nav a:hover {
    background: #8b5a2b;
}

/* Content Area */
h1 {
    color: #d4af37;
    text-align: center;
    font-size: 2em;
}

h2 {
    color: #c48f42;
    border-bottom: 2px solid #8b5a2b;
    padding-bottom: 5px;
}

p, li {
    font-size: 18px;
    line-height: 1.6;
}

ul, ol {
    margin-left: 20px;
}

/* Frame Styles */
frameset {
    border: none;
}

frame {
    border: none;
}

/* Buttons and Links */
a {
    color: #d4af37;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
