/* Basic Page Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    color: #222;
    line-height: 1.6;
    font-size: 18px;
}

/* Page Title */
h1 {
    text-align: center;
    background-color: #663399;
    color: white;
    padding: 1rem;
    margin: 0;
}

/* Center the content */
ul {
    max-width: 600px;
    margin: 2rem auto;
    padding: 0;
    list-style-type: none;
}

/* List items */
li {
    background-color: white;
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

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

a:hover,
a:focus {
    text-decoration: underline;
}