body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
h1 {
    font-size: 38px;
    margin-top: 50px;
    margin-bottom: 60px;
}
h2 {
    font-size: 24px;
    margin-top: 20px;
}
ul {
    font-size: 18px;
    list-style-type: none;
    padding: 0;
    margin-top: 1px;
}
li {
    margin: 10px;
}
a {
    color: #0000EE;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
footer {
    margin-top: auto; /* Pushes the footer to the bottom of the page */
    font-size: 16px;
    color: #666;
    padding: 10px 0;
}
