body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.header-banner {
    background-image: url('../images/BuffSky.jpg'); /* Path to the image */
    background-size: auto; /* Use original size of the image */
    background-position: center; /* Centers the image */
    height: 246px; /* Set the height to match the image height */
    width: 984px; /* Set the width to the original image width */
    margin: 0 auto; /* Center the banner */
    background-color: #f0f0f0; /* Fallback color */
}


header {
    background: #35424a;
    color: #000000;
    padding: 10px 0;
    text-align: center;
}

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

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #000000;
    text-decoration: none;
}

main {
    padding: 20px;
    background: #ffffff;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #35424a;
    color: #ffffff;
    position: relative;
    bottom: 0;
    width: 100%;
}

article {
    background: #f9f9f9;
    margin: 20px 0;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

article h3 {
    margin: 0;
}

article p {
    margin: 10px 0;
}
