/*@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');*/
body {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px; /* Recommended: Cormorant runs small, so 20px is readable like a normal 16px */
    font-weight: 450;
    line-height: 1.6;
    /* font-family: "Garamond", "Baskerville", "Georgia", serif; */
    color: #000;
    background-color: #fff;
    max-width: 650px;
    margin: 4rem auto;
    padding: 0 2rem;
/*    line-height: 1.6; */
/*    font-size: 19px; */
}

/* Header / Title */
header {
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 2px solid #000;
    padding-bottom: 2rem;
}

h1.site-title {
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 2rem;
    margin: 0;
}

h1.site-title a {
    border: none;
    color: #000;
}

/* Typography for Posts */
h1, h2, h3 {
    font-weight: normal;
    text-align: center;
    margin-top: 2rem;
}

h1 { font-size: 1.8rem; }
p { margin-bottom: 1.5rem; text-align: justify; }

/* Links */
a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #999;
    transition: border-color 0.3s;
}

a:hover {
    border-bottom: 1px solid #000;
}

/* The "Table of Contents" list on home page */
.post-list {
    list-style: none;
    padding: 0;
}

.post-list li {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.post-list .date {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    min-width: 100px;
    text-align: right;
}

/* Footer */
footer {
    margin-top: 5rem;
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;

}




