body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 20px;
    background-color: #f0f0f0;
}

.content-wrapper {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #b2ac88;
    border: 1px solid #99941a;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    background-color: #f0deb4;
    color: #2e2c0e;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

header h1 {
    font-size: 24px;
    margin: 0;
}

section {
    padding: 15px;
    border-bottom: 1px solid #009179;
}

.container {
    background: #fff;
    border: 3px solid olive;
    padding: 20px;
    margin-bottom: 20px;
}

.background-position {
    background: url("images/city-skyline.webp") no-repeat center center;
    height: 400px;
}

.background-attachment {
    background: url("images/city-skyline.webp") center fixed;
    height: 400px;
}

.background-size {
    background: url("images/city-skyline.webp") no-repeat center;
    background-size: cover;
    height: 400px;
}

.background-edge-offset {
    background: url("images/triforce.png") no-repeat 100px 10px / 150px 150px, url("images/city-skyline.webp") no-repeat center center / cover;
    height: 400px;
}

.background-multiple {
    background: url("images/rain-drops.png") center, url("images/city-skyline.webp") no-repeat center;
    background-size: 50%, cover;
    height: 400px;
}

footer {
    background-color: #fcfaec;
    color: #666666;
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: #4a4737;
    margin: 0 5px;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}