body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center; /* Center align text within the container */
}

h1 {
    color: #0056b3; /* A blue tone */
    margin-bottom: 20px;
}

p {
    text-align: left; /* Keep paragraph text left-aligned for readability */
    margin-bottom: 15px;
}

a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        margin: 20px auto;
        padding: 20px;
    }
    h1 {
        font-size: 1.5em;
    }
}
