/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

header h1 {
    font-size: 36px;
    color: #333;
}

main p {
    font-size: 18px;
    color: #666;
}

footer p {
    font-size: 14px;
    color: #999;
    margin-top: 20px;
}