body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    height: 50px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

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

#feature {
    text-align: center;
    padding: 50px 20px;
    background: #eee;
    background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url('images/Scioto_Grove_Metro_Park_-_51691951624.jpg') no-repeat center center;
}

.featured-logo {
    height: 100px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

#about, #contact {
    padding: 20px;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}
