
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
    padding: 20px;
}


header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}


section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #FFFFFF;
}

section p {
    font-size: 18px;
    margin-bottom: 10px;
}


footer {
    text-align: center;
    margin-top: 40px;
}

footer p {
    font-size: 16px;
}

footer a {
    color: #FFFFFF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


a {
    color: #FFFFFF;
}

a:hover {
    text-decoration: underline;
}