/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-image: url('images/landmark.jpg'); 
    background-position: center center; 
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-size: contain; 
    margin: 0; 
}



header, footer {
    background-color: #233916;
    color: rgba(22, 20, 20, 0.866);
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    color: rgba(18, 6, 6, 0.863);
    text-decoration: none;
}

main {
    margin: 15px;
    padding-bottom: 60px; 
}


article {
    margin-bottom: 20px;
}

footer {
    font-size: 0.8em;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 10px; 
    background-color: #233916; 
    color: #fff; 
    text-align: center; 
}

