body {
    margin: 0;
    font-family: 'Georgia', serif;
    background-color: #0b0b0b;
    color: #e0d8c3;
}

header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, #000, #111);
}

header h1 {
    font-size: 3em;
    letter-spacing: 2px;
}

nav {
    display: flex;
    justify-content: center;
    background: #111;
    padding: 10px;
}

nav a {
    color: #c2a96b;
    margin: 0 15px;
    text-decoration: none;
}

section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

h2 {
    color: #c2a96b;
}

ul {
    list-style: square;
}

button {
    background: #c2a96b;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background: #e0d8c3;
}

footer {
    text-align: center;
    padding: 20px;
    background: #000;
}