* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #C19354;
    color: #333;
}

header {
  background: #805500;
    color: white;
    padding: 15px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #1abc9c;
}

main {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

main h1 {
    margin-bottom: 15px;
}

footer {
    background: #805500;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}
