body {
    margin: 0;
    min-height: 100vh;

    font-family: "Inter", "Helvetica";
    font-size: 16px;
    line-height: 1.6;

    background-color: #e7e0d6;
    color: black;

    display: flex;
    justify-content: center;
}

.page {
    width: 90%;
    max-width: 700px;
    padding-top: 60px;
    padding-bottom: 80px;
}

/* header */

.header {
    text-align: center;
    margin-bottom: 90px;
}

.name {
    font-size: 24px;
    margin-bottom: 12px;
}

.back {
    color: black;
    text-decoration: none;
}

.back:hover {
    text-decoration: underline;
    color: blue;
}

/* blog post */

article h1 {
    font-size: 28px;
    font-weight: normal;
    margin: 0;
}

.date {
    font-size: 14px;
    margin-top: 8px;
}

.content {
    margin-top: 50px;
}

.content p {
    margin-bottom: 24px;
}