About Sunshine Bakery

At Sunshine Bakery, we believe in making the freshest, most delicious baked goods from locally-sourced ingredients. Whether it's bread, cakes, or pastries, we have something to brighten your day!

Our Products

/* General Styles */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f9f9f9; color: #333; } #header { background-color: #f7c600; padding: 20px; text-align: center; } #header h1 { margin: 0; font-size: 3em; } #header .slogan { font-style: italic; font-size: 1.2em; } #header nav ul { list-style-type: none; padding: 0; } #header nav ul li { display: inline-block; margin: 0 15px; } #header nav ul li a { color: #333; text-decoration: none; font-weight: bold; } #header nav ul li a:hover { color: #f7c600; } /* Content Section */ #content { display: flex; justify-content: center; margin: 20px 0; } #left-column, #right-column { width: 45%; margin: 0 20px; } #left-column h2, #right-column h2 { color: #f7c600; } #left-column p { line-height: 1.6; } #right-column ul { list-style-type: none; padding: 0; } #right-column ul li { background-color: #f7c600; margin: 5px 0; padding: 10px; border-radius: 5px; } /* Footer Section */ #footer { background-color: #333; color: #fff; text-align: center; padding: 20px; } #footer address { font-style: normal; } /* Centering the page content */ body { margin: 0 auto; max-width: 1200px; } /* Responsive Design: Media Query for smaller screens */ @media (max-width: 768px) { #content { flex-direction: column; text-align: center; } #left-column, #right-column { width: 100%; margin: 10px 0; } #header h1 { font-size: 2.5em; } #header nav ul li { margin: 0 10px; } }