.poetry-box {
    box-sizing: border-box;
    padding: 20px;
    color: rgb(170, 170, 170);
    width: 100%;
    height: 500px;
    background-color: #202020;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 20px;
    color: rgb(170, 170, 170);
    transition: box-shadow 0.5s ease;
    transition: transform 0.5s ease;
}

.poetry-box:hover {
    /* box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1); */
    transform: translateY(-10px);
    cursor: pointer;
}

.poetry-box-header {
    display: flex;
    justify-content: space-between;

}

.poetry-box-content {
    white-space: pre-line;
    word-wrap: break-word;
    text-align: right !important;
    line-height: 2;
    margin-top: -30px;
    padding: auto;
    height: 80%;
}

.poetry-box-content img{
    width: 100%;
    height: 180px;
    margin: auto;
    display: block;
    border-radius: 2px;
}