/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    background-image: url("background.jpg");
    background-repeat: no-repeat;
    background-size: cover; /* Adjust background image size to fit the screen */
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3 {
    font-family: "Times New Roman", serif; /* Consider a more elegant font for headings */
    font-weight: bold;
    color: #333;
}

p {
    line-height: 1.6; /* Improve readability with line spacing */
}

/* Links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

/* Menu Table */
.menu-table {
    background-color: #007bff;
    color: #fff;
    text-align: center;
}

/* Footer */
footer {
    background-color: #f2f2f2;
    padding: 20px;
    text-align: center;
}

/* Responsive Design (Optional) */
@media (max-width: 768px) {
    /* Adjust styles for smaller screens, e.g., mobile devices */
    body {
        font-size: 14px;
    }

    table {
        font-size: 12px;
    }
}