/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto; /* Centers the content */
}

header, footer {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

main {
    padding: 20px 0;
}
