/* style.css */
body {
    font-family: 'EB Garamond', Garamond, serif;  /* Garamond font */
    font-size: 20px;                              /* Larger text */
    background-color: #fdf6f0;                    /* Soft background */
    color: #333;                                  /* Text color */
    margin: 40px;
}

h1 {
    font-size: 42px;
    color: #e67e22;                               /* Warm orange heading */
    text-align: center;
}

h2 {
    font-size: 28px;
    color: #2c3e50;                               /* Deep blue subheading */
}

p {
    font-size: 20px;
    line-height: 1.8;                             /* Comfortable spacing */
}

ul {
    list-style-type: square;
}

a {
    color: #2a7ae2;                               /* Link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;                   /* Hover effect */
}