<style>
    body {
        font-family: Arial, Helvetica, sans-serif;
        background-color: #eef2f7;
        color: #333;
        margin: 0;
        padding: 0;
    }

    /* Page layout */
    body {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Headings */
    h1 {
        text-align: center;
        color: #2c3e50;
        margin-top: 30px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    h2 {
        text-align: center;
        color: #34495e;
        margin-top: 20px;
    }

    /* Paragraph */
    p {
        max-width: 600px;
        text-align: center;
        font-size: 16px;
        line-height: 1.6;
    }

    /* Assignment list */
    ul {
        list-style-type: square; /* custom bullet */
        padding-left: 0;
    }

    li {
        margin: 10px 0;
        font-size: 18px;
    }

    /* Links */
    a {
        text-decoration: none;
        color: #1f618d;
        font-weight: bold;
    }

    a:hover {
        color: #7d3c98;
        text-decoration: underline;
    }
</style>
