/* Global Styles */
body {
    font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
    background-color: #f2f2f2; /* soft gray background */
    color: #444;               /* dark gray text */
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    max-width: 700px;
    width: 90%;       /* ensures it doesn’t touch the edges */
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

/* Titles */
h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

/* Paragraphs */
p {
    font-size: 1.1em;
    margin-bottom: 1em;
}

/* Links */
a {
    color: #1a0dab;
    text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 600px) {
    h1 {
        font-size: 1.5em;
    }
    p {
        font-size: 1em;
    }
}