/* General Reset */
body, h1, h2, p, ul, li, a, img {
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: inherit;
    font-family: "MS Gothic", sans-serif;
}

/* Body Styling */
body {
    background-color: #000; /* Black Background */
    color: #fff; /* White Text */
    font-size: 14px;
    text-align: center;
}

/* Container */
#container {
    width: 900px;
    margin: 0 auto;
    border: 1px solid #333;
    padding: 10px;
}

/* Header Section */
#header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.header-image {
    width: 150px;
    height: auto;
    border: 1px solid #444;
}

/* Main Content */
#main-content {
    text-align: left;
    padding: 10px;
}

.highlight-text {
    color: #ffff00; /* Yellow Text */
}

/* center image */
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 42%;
  }
/* Footer Links */
#footer-links {
    margin: 20px 0;
    border-top: 1px solid #444;
    padding: 10px;
}

#footer-links a {
    color: #ffff00; /* Yellow Links */
}

#footer-links a:hover {
    text-decoration: underline;
}

/* Footer Section */
footer {
    font-size: 12px;
    margin-top: 20px;
    color: #ccc;
    border-top: 1px solid #444;
    padding: 10px;
}
