body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em 0;
}

h1 {
    color: #333;
}

p {
    margin-bottom: 1em;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li:before {
    content: "\2022";  /* Use a bullet point as a list item marker */
    color: #333;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
