.content {
    max-width: 650px !important;
    padding: 0 20px !important;
}

.poem {
    position: relative;
}

.poem * {
    color: lightgray;
}

.poem .date, .poem .foreword, .poem .afterword {
    margin-bottom: .8rem;
    letter-spacing: .1rem;
    font-weight: 300;
    color: gray;
}

.poem .date, .poem .foreword, .poem .afterword {
    width: max-content;
    margin-left: auto;
    margin-right: 0;
    font-style: italic;
}

.poem .title {
    letter-spacing: .3rem;
    font-weight: 200;
    font-size: 3rem;
    text-align: center;
}

.poem .authors-container {
    margin-bottom: 20px;
}

.poem .authors {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 5px;
    border-radius: 10px;
    background: #111111;
}

.poem .label {
    display: flex;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    width: calc(25% - 10px);
    margin: 5px 5px 5px 5px;
    height: 40px;
}

.poem .author {
    display: flex;
    background: #474747;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    width: calc(25% - 10px);
    margin: 5px 5px 5px 5px;
    height: 40px;
}

.poem .author:hover {
    text-decoration-line: none;
    color: inherit;
    background: #333333;
}

.poem .text {
    margin-bottom: 2rem;
    letter-spacing: .1rem;
    font-size: larger;
    font-weight: 300;
}

.poem .background-img {
    z-index: 0;
    opacity: 15%;
width: 70%;

    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}

.poem .poem-body {
    margin-left: auto;
    margin-right: auto;
    width: fit-content
}

@media screen and (max-width: 499px) {
    .content {
        max-width: 400px !important;
        padding: 0 36px !important;
    }

    .poem .authors {
        font-size: 4vw;
    }

    .poem .label, .poem .author {
        height: 8vw;
    }

    .poem .date, .poem .foreword, .poem .afterword {
        font-size: 4.5vw;
    }

    .poem .title {
        font-size: 12vw;
        letter-spacing: 1vw;
    }

    .poem .text {
        font-size: 4vw;
        letter-spacing: .325vw;
    }
}

.light-on-hover:hover {
    color: white !important;
}

.like_button {
    background: transparent;
    border-radius: 2px;
}

.like_button:hover {
    background: #6C757D;
    border-color: #6C757D !important;
}
