body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: #eee;
}

header {
    background: #0f3b3d; /* deep forest tone */
    padding: 15px 20px;
    border-bottom: 2px solid #1e6f73; /* teal accent */
}

.header-inner {
    display: flex;
    flex-direction: column; /* stack vertically */
    align-items: center;    /* center horizontally */
    justify-content: center;
    gap: 10px;
}




header h1 {
    margin: 0;
    color: #3aa6a9; /* soft teal highlight */
    font-size: 32px;
    letter-spacing: 1px;
}

nav {
    margin-top: 10px;
    text-align: center;
}

nav a {
    color: #3aa6a9; /* soft teal */
    margin: 0 12px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #1e6f73; /* darker teal */
}
