/* Reset basic styling for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container for centering content */
.container {
    width: 90%;
    max-width: 800px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Basic styling for the heading */
h1 {
    margin-bottom: 20px;
    text-align: center;
}