/* Reset some default browser styles */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Set background color and text color */
body {
    background-color: #f2f2f2;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Style the header */
header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Style the main content */
main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Style sections */
section {
    margin-bottom: 20px;
}

/* Style headings */
h1, h2 {
    color: #333;
}

/* Style links */
a {
    color: #0078e7;
    text-decoration: none;
}

/* Style the footer */
footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

