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

/* Body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    line-height: 1.6;
}

/* Header styles */
header {
    background-color: #000; /* Black header background */
    color: #fff; /* White header text */
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
}

/* Sections styles */
section {
    padding: 50px;
    text-align: center;
}

section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Footer styles */
footer {
    background-color: #fff; /* Black footer background */
    color: #000; /* White footer text */
    padding: 20px;
    text-align: center;
}

footer p {
    font-size: 2.5em;
}

