body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background: linear-gradient(to right, #9009E7, #5068EE); /* Gradient background */
    color: #fff; /* Change text color to white for better contrast */
}

header {
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background for header */
    padding: 10px 0;
    text-align: center;
}

h1, h2 {
    color: #fff; /* White text for headings */
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8em;
    color: #fff; /* White text for footer */
}

section {
    background: rgba(255, 255, 255, 0.1); /* Slightly transparent background for sections */
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px; /* Rounded corners for sections */
}