@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* Apply styles to the entire page */
body {
    background-color: #1a1a1a;
    color: #e8e8e8;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

a {
    color: #bea500;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Content container with box styling */
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background-color: transparent;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: #e8e8e8;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-weight: 600;
}

h1 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 1em;
}

p {
    text-align: justify;
    margin-bottom: 1.2em;
    color: #e8e8e8;
}

/* Navigation styling */
nav {
    text-align: center;
    margin-top: 2em;
    padding-top: 2em;
    border-top: 1px solid #e8e8e8;
}

nav a {
    margin: 0 10px;
    font-weight: 500;
}