html, body {
    margin-top: 0;
    padding-top: 0;
}

.content {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 96%;
    margin: 0 auto;
    padding-top: 1.5rem;
    /* font-family: "Custom Clean Serif", serif; */
    font-family: "TeX Gyre Pagella", Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    letter-spacing: 0.01em;
    line-height: 180%;
}

header {
    margin-top: 3%;
    position: relative;
}

.back-link {
    position: absolute;
    top: 0;
    right: 0;
}
.back-link:not(:hover) {
    text-decoration: none;
}

header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0 0 0.6rem;
    font-weight: 900;
    text-align: center;
}

.post-meta {
    /* font-family: "Custom Clean Serif", serif; */
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.02em;
    opacity: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.5rem;
    align-items: center;
    margin-bottom: 0.5rem;
    justify-content: center;
    font-size: 1rem;
}

.poem {
    width: max(55%, 45ch);
    max-width: 100%;
    margin: 0 auto;
    margin-top: 5%;
    text-align: left;
}

.poem p {
    margin-bottom: 1.5rem;
    margin-right: 10%;
}

.poem p:nth-of-type(2n) {
  text-align: right;
  margin-right: 0;
  margin-left: 10%;
}

.ul_red {
    text-decoration: underline;
    text-decoration-color: rgba(205, 92, 92, 0.9);
}

.ul_yellow {
    text-decoration: underline;
    text-decoration-color: rgba(218, 165, 32, 0.9);
}

@media (max-width: 768px) {
    .content {
        width: 100%;
        margin: 0 auto;
        font-size: 1.9rem;
        letter-spacing: 0.01em;
        line-height: 180%;
    }

    .poem {
        width: 100%;
        margin: 0 auto;
        margin-top: 5%;
    }

    header {
        margin-top: 0.5rem;
    }

    .back-link {
        position: static;
        display: block;
        text-align: right;
        margin-bottom: 0.5rem;
    }

    header h1 {
        font-size: 2.4rem;
    }
}
