/* style.css */
body {
    background-color: red;
}
/* style.css */
body {
    background-color: red;
    color: white; /* Makes the text white */
}
body {
    background-color: red; /* Red background for the whole page */
    color: white; /* White text */
    font-family: Arial, sans-serif;
    margin: 0; /* Remove default margin */
}

/* Banner Section */
.banner {
    background-color: blue; /* Color for the banner */
    padding: 20px; /* Add some padding */
    text-align: left; /* Center the text */
}

/* Black Section */
.black-section {
    background-color: black; /* Black background */
    padding: 20px; /* Add some padding */
    text-align: left; /* Center the text */
}