@import url('https://fonts.cdnfonts.com/css/inter');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: 6rem 0 0 0;
    max-width: 70ch;
    margin: 0 auto;
    font-family: 'Times New Roman', Times, serif;
}

header,
main,
footer {
    margin-bottom: 2rem;
}

h1,
h2 {
    margin-bottom: 0.6rem;
    margin-top: 0.6rem;
}

h1 {
    font-size: 26pt;
    line-height: 1.7;
}

h2 {
    font-size: 22pt;
    line-height: 1.7;
}

p {
    font-size: 13pt;
    line-height: 1.8;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
}

a {
    font-size: 13pt;
    text-decoration: underline;
}

a:hover {
    font-style: italic;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post li {
    list-style: none;
    margin-left: 1.2rem;
    padding-left: 0.8rem;
    padding-bottom: 0.6rem;
}

.date {
    color: #777;
    font-style: italic;
}

blockquote {
    font-style: italic;
    margin: 16px 0;
    padding-left: 16px;
    border-left: 2px solid #ccc;
    color: #555;
}