header {
    padding-bottom: 20px;
    margin-bottom: 20px;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1.125rem;
    background-color: #fffffe;
    max-width: 700px;
    margin: 0 auto;
    padding: 6em 3em;
    line-height: 1.6;
}

h1,
h2,
h3,
a {
    color: #000000;
    margin: 0px;
}

a {
    text-decoration: none;
}

.post-list {
    list-style: none;
    padding: 0;
}

.post-list li:hover a {
    text-decoration: underline;
}

.post-list li {
    position: relative;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.post-list li a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.date {
    color: #888;
    font-size: 0.9em;
}

.post-img {
    display: block;
    width: 160px;
    height: 90px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.underlined {
    text-decoration: underline;
}
