body {
    font-family: sans-serif;
    margin: 0 auto;
    padding: 20px;
    max-width: 1200px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f4f4f4; /* Light gray background */
    color: #333; /* Dark text color */
}

header {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

header p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

main {
    margin-bottom: auto;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

li a {
    text-decoration: none;
    color: inherit; /* Inherit text color from body */
    display: inline-flex; /* Change to inline-flex */
    align-items: center;
}

li a:hover {
    color: blue;
}

li a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    margin-left: 8px; /* Add some space between text and arrow */
}

footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #ddd;
    font-size: 0.9em;
    color: #777;
}