body {
    background: #f4e2c0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #4b2e17;
    margin: 0;
    padding: 0;
    min-width: 960px;
}
#header {
    background: #b8860b;
    padding: 20px 0;
    text-align: center;
}
#header a.logo img {
    width: 200px;
}
#header ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#header ul li {
    display: inline;
    margin: 0 15px;
}
#header ul li a {
    color: #4b2e17;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}
#header ul li a:hover {
    color: #a62924;
}
#body p{
    padding: 8px;
}
#featured img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}
#featured div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
}
#featured div h2 {
    color: #b8860b;
    font-size: 24px;
}
#featured div span {
    color: #4b2e17;
    font-size: 18px;
}
#body ul {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#body ul li {
    margin: 10px;
}
#body ul li a {
    text-decoration: none;
    color: #4b2e17;
}
#body ul li img {

    object-fit: cover;
    border: 2px solid #b8860b;
    transition: transform 0.3s;
}
#body ul li img:hover {
    transform: scale(1.05);
}
#body ul li span {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
#footer {
    background: #4b2e17;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
#footer p {
    margin: 0;
}


#footer a {
    color: #fff;
    text-decoration: none;
 }

#footer a:hover {
    color: #fff;
	text-decoration: underline;
}


#body a {
    color: #a62924;
    text-decoration: none;
}

#body a:hover {
    color: #a62924;
	text-decoration: underline;
}
