/* Reset default margins/padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header Styles */
header {
    background-color: #FF0000;
    padding: 20px;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
}

.logo {
    color: white;
    font-family: Arial, sans-serif;
    font-size: 2.5em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Main Content Styles */
main {
    margin-top: 100px;
    padding: 30px 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

h1, h2, h3 {
    font-family: Arial, sans-serif;
    text-align: center;
    color: #FF0000;
}

h1 {
    margin-bottom: 30px;
    font-size: 2.5em;
}

h2 {
    margin: 25px 0 15px 0;
    font-size: 2em;
}

h3 {
    margin: 20px 0 10px 0;
    font-size: 1.75em;
}

.dummy-text {
    color: #444444;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
}

/* Footer Styles */
footer {
    background-color: #FFD700;
    padding: 15px;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    color: #272727;
    font-family: Arial, sans-serif;
    font-size: 0.9em;
}

/* Style for the Nutritional Information Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

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

table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

table td {
    background-color: #fff;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tr:hover {
    background-color: #f1f1f1;
}

table th, table td {
    font-size: 14px;
}

table td {
    font-size: 13px;
    color: #333;
}

table caption {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Style for the Featured Image */
.featured-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 10px auto;
}
