body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

/* header content */

.header {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 483px;
    background-color: #061202;
    /*border-bottom: #FDC90F 1px;*/
}

.title_block_mobile {
    visibility: hidden;
}

.title_text {
    font-size: 40px;
    font-family: "Lora", "Bold";
    color: #ffffff;
    font-weight: 700;
    margin: 0px;
}

.secondary_text {
    font-size: 18px;
    font-family: "Lora", "SemiBold";
    color: #f5cb47;
    font-weight: 600;
    align-self: flex-end;
    margin-right: 30px;
    margin-top: 0px;
}

.waves_block_v1 {
    position: absolute;
    left: 0;
}

.wave_v1 {
    position: absolute;
    left: 0;
}

.lion_monkey_img_block {
    position: absolute;
    right: 0;
}

.lion_monkey_img {
    position: absolute;
    right: 0;
}

.header_circle_img {
    width: 16px;
    height: 16px;
}

.auth_block {
    display: flex;
    justify-content: space-between;
    width: 170px;
    margin-top: 70px;
}

.auth_block_links {
    font-size: 12px;
    font-family: "Lora", "SemiBold";
    font-weight: 600;
    text-decoration: none;
    color: #fdc90f;
    z-index: 2;
}

.auth_block_links:hover {
    color: #fffff0;
}

.title_block {
    position: relative;
    width: 1150px;
    bottom: 18px;
    right: 65px;
}

.header_nav_menu_block {
    margin-top: 5px;
    z-index: 9;
    position: relative;
}

.burger_menu {
    visibility: hidden;
}

.nav_menu_link {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    font-family: "Lora", "SemiBold";
    text-decoration: none;
    color: #fdc90f;
    margin-left: 80px;
    z-index: 9;
    position: relative;
}

.nav_menu_link:first-child {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    font-family: "Lora", "SemiBold";
    text-decoration: none;
    color: #fdc90f;
    margin-left: 0px;
    z-index: 9;
    position: relative;
}

.nav_menu_link:hover,
.nav_menu_link.active,
.nav_menu_link:focus {
    color: white;
}

.dot {
    position: absolute;
    left: 50%;
    border-radius: 50px;
    bottom: -70px;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    background: #fffff0;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.nav_menu_link:hover .dot,
.nav_menu_link.active .dot,
.nav_menu_link:focus .dot {
    opacity: 1;
}

.nav_menu_link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.2s ease-in-out;
}

.nav_menu_link:hover::before,
.nav_menu_link.active::before,
.nav_menu_link:focus::before {
    transform: scaleX(1);
}

/* media for header */
@media (min-width: 1440px) and (max-width: 1750px) {
    #lion_monkey {
        content: url("../images/lion_monkey_1440px.svg");
    }
    #wave_v1 {
        content: url("../images/waves_v1_1440px.svg");
    }

    .title_block {
        position: relative;
        width: 1150px;
        bottom: 18px;
        right: 65px;
    }
}

@media (min-width: 1201px) and (max-width: 1440px) {
    #lion_monkey {
        content: url("../images/lion_monkey_1201px.svg");
    }

    #wave_v1 {
        content: url("../images/wave_v1_1201px.svg");
    }

    .title_block {
        position: relative;
        width: 850px;
        bottom: 18px;
        right: 160px;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    #lion_monkey {
        content: url("../images/lion_monkey_1025px.svg");
    }

    #wave_v1 {
        content: url("../images/wave_v1_1025px.svg");
    }

    #header_logo {
        content: url("../images/header_logo_1025px.svg");
    }

    .header_nav_menu_block {
        margin-top: 70px;
    }

    .title_block {
        width: 765px;
    }
}

@media (min-width: 700px) and (max-width: 1024px) {
    #lion_monkey {
        content: url("../images/lion_monkey_700px.svg");
    }

    #wave_v1 {
        content: url("../images/wave_v1_700px.svg");
    }

    #header_logo {
        visibility: hidden;
        content: url("../images/header_logo_1025px.svg");
    }

    .header {
        height: 279px;
    }

    .title_block {
        display: none;
    }

    .title_text {
        font-size: 40px;
        font-weight: 700;
        font-family: "Lora", "Bold";
    }

    .title_block_mobile {
        display: flex;
        flex-direction: column;
        visibility: visible;
        margin-top: 75px;
        margin-left: 160px;
    }

    .header_nav_menu_block {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        margin-top: 179px;
        z-index: 9;
        position: relative;
    }

    .nav_menu_link {
        display: none;
    }

    .nav_menu_link.active {
        display: block;
        margin-left: 0px;
    }

    .burger_menu {
        visibility: visible;
    }

    .auth_block {
        display: flex;
        justify-content: space-between;
        width: 170px;
        margin-top: 28px;
    }
}

@media (min-width: 577px) and (max-width: 700px) {
    #lion_monkey {
        content: url("../images/lion_monkey_577px.svg");
    }

    #wave_v1 {
        content: url("../images/wave_v1_577px.svg");
    }

    #header_logo {
        display: none;
        content: url("../images/header_logo_1025px.svg");
    }

    .header {
        height: 279px;
    }

    .title_block {
        display: none;
    }

    .title_block_mobile {
        display: flex;
        flex-direction: column;
        visibility: visible;
        margin-top: 85px;
        margin-left: 50px;
    }

    .header_nav_menu_block {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        margin-top: 179px;
        z-index: 9;
        position: relative;
    }

    .nav_menu_link {
        display: none;
    }

    .nav_menu_link.active {
        display: block;
        margin-left: 0px;
    }

    .burger_menu {
        visibility: visible;
    }

    .auth_block {
        display: flex;
        justify-content: space-between;
        width: 170px;
        margin-top: 28px;
    }
}

@media (min-width: 360px) and (max-width: 577px) {
    #lion_monkey {
        content: url("../images/lion_monkey_360px.svg");
    }

    #wave_v1 {
        content: url("../images/wave_v1_360px.svg");
    }

    #header_logo {
        display: none;
        content: url("../images/header_logo_1025px.svg");
    }

    .header {
        height: 279px;
    }

    .title_block {
        display: none;
    }

    .title_block_mobile {
        display: flex;
        flex-direction: column;
        visibility: visible;
        margin-top: 75px;
        margin-left: 50px;
    }

    .header_nav_menu_block {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        margin-top: 179px;
        z-index: 9;
        position: relative;
    }

    .nav_menu_link {
        display: none;
    }

    .nav_menu_link.active {
        display: block;
        margin-left: 0px;
    }

    .burger_menu {
        visibility: visible;
    }

    .auth_block {
        display: flex;
        justify-content: space-between;
        width: 170px;
        margin-top: 28px;
    }
}

/* main content */

.main {
    position: relative;
    background-color: #040e02;
    width: 100%;
    border-top: rgba(253, 201, 15, 0.15) 1px solid;
    overflow: hidden;
}

.block_section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 1094px;
    padding-top: 99px;
    padding-bottom: 96px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 1200px) and (max-width: 1440px) {
    .container {
        width: 956px;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .container {
        width: 816px;
    }
}

@media (min-width: 577px) and (max-width: 1025px) {
    .container {
        width: 552px;
    }
}

@media (min-width: 360px) and (max-width: 576px) {
    .container {
        width: 336px;
    }
}

@media (min-width: 360px) and (max-width: 1025px) {
    .container {
        display: flex;
        flex-direction: column;
    }
}

.dropdown {
    position: relative;
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .dropdown {
        width: 380px;
        /*margin-top: 32px;*/
    }
}

@media (min-width: 577px) and (max-width: 1025px) {
    .dropdown {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 552px;
    }
}

@media (min-width: 360px) and (max-width: 576px) {
    .dropdown {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 336px;
    }
}

.dropdown_block {
    position: relative;
}

.dropdown-label {
    margin-bottom: 10px;
    color: #ffffff;
    margin-right: 10px;
    font-size: 14px;
    font-family: "Lora", "SemiBold";
}

@media (min-width: 577px) and (max-width: 1025px) {
    .dropdown-label {
        margin-bottom: 0px;
    }
}

@media (min-width: 360px) and (max-width: 576px) {
    .dropdown-label {
        margin-bottom: 0px;
    }
}

.dropdown_menu {
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.dropdown_menu select {
    padding: 14px 0px 14px 2px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    font-size: 14px;
    color: #fdc90f;
    border-bottom: 1px solid rgba(253, 201, 15, 0.1);
    appearance: none;
    -webkit-appearance: none;
    width: 345px;
    border-radius: 0;
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .dropdown_menu select {
        width: 250px;
    }
}

@media (min-width: 577px) and (max-width: 1025px) {
    .dropdown_menu select {
        width: 436px;
    }
}

@media (min-width: 360px) and (max-width: 576px) {
    .dropdown_menu select {
        width: 220px;
    }
}

.dropdown_menu:hover,
.dropdown_menu.active,
.dropdown_menu select:focus {
    outline: none;
    cursor: pointer;
    border-bottom: 1px solid #fdc90f;
}

.option {
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 15px;
    border: none;
    border-bottom: 1px solid rgba(253, 201, 15, 0.1);
    background-color: #000000;
    color: #fdc90f;
}

.dropdown_menu select option:hover {
    cursor: pointer;
    background-color: #000000;
}

.dropdown-icon {
    position: absolute;
    top: 7px;
    right: 16px;
    width: 14px;
    height: 14px;
}

.dropdown-menu {
    position: absolute;
    top: 30px;
    width: 345px;
    height: 383px;
    background-color: #000000;
    border-radius: 0;
    list-style-type: none;
    padding: 10px;
    overflow-y: auto;
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .dropdown-menu {
        width: 250px;
    }
}

.dropdown-item {
    padding: 5px;
    color: #fdc90f;
}

.dropdown-item:hover,
.dropdown-item:active,
.dropdown-item:focus {
    color: white;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.custom-input {
    width: 444px;
    height: 50px;
    border-radius: 12px;
    background-color: #000000;
    border: none;
    color: #ffffff;
    padding-left: 10px;
    padding-right: 14px;
    background-image: url("../images/search.svg");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
}

.custom-input::placeholder {
    color: #ffffff;
    text-indent: 24px;
    font-family: "Lora", "SemiBold";
}

.custom-input:focus {
    outline: none;
    box-shadow: 0px 0px 50px -15px #fdc90f;
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .custom-input {
        width: 396px;
        /*margin-top: 32px;*/
    }
}

@media (min-width: 577px) and (max-width: 1025px) {
    .custom-input {
        width: 552px;
        margin-top: 32px;
    }
}

@media (min-width: 360px) and (max-width: 576px) {
    .custom-input {
        width: 336px;
        margin-top: 32px;
    }
}

.block_details {
    height: 100%;
    width: 1095px;
    border-radius: 12px;
    background-color: #001c00;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 63px;
    padding-bottom: 118px;
    padding-left: 68px;

}

.block_details a {
    color: #00AFD4 !important;
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .block_details {
        padding-bottom: 78px;
    }
}

@media (min-width: 1200px) and (max-width: 1440px) {
    .block_details {
        width: 956px;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .block_details {
        width: 816px;
    }
}

@media (min-width: 577px) and (max-width: 1025px) {
    .block_details {
        width: 552px;
        padding-left: 35px;
        padding-bottom: 40px;
    }
}

@media (min-width: 577px) and (max-width: 1025px) {
    .block_details {
        width: 700px;
    }
}

@media (min-width: 360px) and (max-width: 576px) {
    .block_details {
        width: 336px;
        padding-left: 15px;
        padding-bottom: 24px;
    }
}

.title {
    color: #fdc90f;
    font-family: "Lora", "SemiBold";
    font-weight: 700;
    font-size: 32px;
    padding-top: 50px;
}

.video_preview {
    width: 491px;
    height: 204px;
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
    #myIframe {
        content: url("../images/video_play.svg");
        height: 50px;
    }
}

@media screen and (min-width: 360px) and (max-width: 1025px) {
    #myIframe {
        content: url("../images/video_play.svg");
        width: 300px;
        height: 50px;
    }
}

.video_text {
    font-size: 26px;
    font-family: "Adobe Jenson Pro Italic", serif;
    color: #fffff0;
    padding: 80px 0px 80px 0px;
}

@media screen and (min-width: 1200px) and (max-width: 1440px) {
    .video_text {
        padding: 70px 0px 70px 0px;
    }
}

@media screen and (min-width: 360px) and (max-width: 1025px) {
    .video_text {
        padding: 35px 0px 35px 0px;
        width: 304px;
    }
}

.block_txt {
    /*padding-top: 80px;*/
}

.txt_list {
    font-size: 18px;
    font-family: "Lora", "SemiBold";
    color: #fffff0;
    padding-top: 20px;
    margin-top: 0px;
}

.poem_content_1, .poem_content_2 {
    max-width: 850px;
}

@media screen and (min-width: 360px) and (max-width: 1025px) {
    .txt_list {
        font-size: 14px;
    }
}

@media screen and (min-width: 1024px) {
    .poem_content_1, .poem_content_2 {
        max-width: 850px;
    }
}

.block_img {
    width: 550px;
}

@media screen and (min-width: 577px) and (max-width: 1025px) {
    .block_img {
        width: 478px;
    }
}

@media (min-width: 360px) and (max-width: 576px) {
    .block_img {
        width: 304px;
    }
}

.schema_img {
    padding-top: 55px;
}

@media screen and (min-width: 577px) and (max-width: 1025px) {
    .schema_img {
        width: 478px;
    }
}

@media (min-width: 360px) and (max-width: 576px) {
    .schema_img {
        width: 304px;
    }
}

.txt_img {
    color: #fffff0;
    text-align: center;
}

.add_ideas_text {
    font-size: 26px;
    font-family: "Adobe Jenson Pro Italic", serif;
    color: #fffff0;
    padding-top: 55px;
}

@media (min-width: 360px) and (max-width: 1025px) {
    .add_ideas_text {
        font-size: 16px;
    }
}

.author_published {
    padding-top: 55px;
    font-family: "Adobe Jenson Pro Italic", serif;
}

.author {
    color: #fdc90f;
    font-size: 26px;
}

.published {
    display: block;
    color: #fffff0;
    padding-top: 12px;
}

.line_middle_screen {
    width: 600px;
    height: 1px;
    background: #fdc90f;
    margin-top: 55px;
}

@media (min-width: 577px) and (max-width: 1440px) {
    .line_middle_screen {
        width: 482px;
    }
}

@media (min-width: 360px) and (max-width: 576px) {
    .line_middle_screen {
        width: 304px;
    }
}

.comments_detail {
    font-family: "Lora", "SemiBold";
    font-size: 32px;
    color: #fffff0;
    font-weight: 700;
    padding-top: 29px;
}

.write_comment {
    width: 600px;
    height: 50px;
    border-radius: 6px;
    border: none;
    background-color: #000000;
    color: #ffffff;
    padding: 8px;
    font-size: 16px;
    margin-top: 10px;
}

@media (min-width: 577px) and (max-width: 1440px) {
    .write_comment {
        width: 482px;
    }
}

@media (min-width: 360px) and (max-width: 576px) {
    .write_comment {
        width: 304px;
    }
}

.write_comment::placeholder {
    color: #ffffff;
    text-indent: 22px;
    font-family: "Lora", "SemiBold";
}

.btn_add_comment {
    cursor: pointer;
    margin-top: 31px;
    display: block;
    background-color: #fdc90f;
    border: none;
    width: 143px;
    height: 40px;
    border-radius: 4px;
}

.btn_add_comment:hover {
    background-color: #8c6d00;
}

.txt_button {
    font-size: 14px;
    font-weight: 600;
}

.comment_block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 600px;
    height: 5%;
    margin-top: 62px;
    border-radius: 6px;
    border: solid 1px #fcc60366;
    background-color: #061202;
    padding: 25px 24px;
}

@media (min-width: 577px) and (max-width: 1440px) {
    .comment_block {
        width: 482px;
    }
}

@media (min-width: 360px) and (max-width: 576px) {
    .comment_block {
        width: 304px;
    }
}

.comments_children_block {
    display: flex;
    justify-content: flex-end;
    width: 600px;
}

@media (min-width: 577px) and (max-width: 1440px) {
    .comments_children_block {
        width: 482px;
    }
}

@media (min-width: 360px) and (max-width: 576px) {
    .comments_children_block {
        width: 304px;
    }
}

.comment_block_children {
    min-height: 115px;
    display: flex;
    flex-direction: column;
    width: 485px;
    margin-top: 16px;
    border-radius: 6px;
    border: solid 1px #fcc60366;
    background-color: #061202;
    padding: 25px 24px;
    overflow: auto;
}

@media (min-width: 1200px) and (max-width: 1440px) {
    .comment_block_children {
        width: 434px;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .comment_block_children {
        width: 434px;
        height: 135px;
    }
}

@media (min-width: 577px) and (max-width: 1025px) {
    .comment_block_children {
        width: 434px;
        height: 135px;
    }
}

@media (min-width: 360px) and (max-width: 576px) {
    .comment_block_children {
        width: 272px;
        height: 135px;
    }
}

.top_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.left_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.right_block {
    margin-top: 18px;
    width: 100%;
}

@media (min-width: 360px) and (max-width: 1025px) {
    .left_block {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 360px) and (max-width: 1025px) {
    .top_row {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
    }
}

.bottom_row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-top: 18px;
    width: 100%;
}

.name {
    font-size: 18px;
    font-weight: 700;
    color: #fdc90f;
    font-family: "Lora", "Bold";
    margin: 0;
}

@media (min-width: 360px) and (max-width: 1025px) {
    .name {
        padding-bottom: 10px;
    }
}

.content {
    font-size: 14px;
    font-weight: 400;
    color: #fffff0;
    font-family: "Lora", "Regular";
    margin: 0px;
}

.date {
    font-size: 12px;
    font-weight: 400;
    color: #fffff0;
    font-family: "Lora", "Regular";
    padding-right: 15px;
    margin: 0px;
}

.reply_text {
    font-size: 14px;
    font-weight: 400;
    color: #fdc90f;
    font-family: "Lora", "Regular";
    text-align: end;
    padding-right: 15px;
    margin: 0;
    cursor: pointer;
}

.reply_input {
    width: 300px;
    height: 25px;
    border-radius: 6px;
    border: none;
    background-color: #000000;
    color: #ffffff;
    padding: 8px;
    font-size: 12px;
    margin-top: 10px;
}

.btn_post_reply {
    cursor: pointer;
    margin-top: 9px;
    display: inline-block;
    background-color: #fdc90f;
    border: none;
    width: 100px;
    height: 25px;
    border-radius: 4px;
    text-align: center;
    line-height: 25px;
}

.btn_delete_reply {
    font-size: 14px;
    font-weight: 400;
    color: #fd0f0f;
    font-family: "Lora", "Regular";
    text-align: end;
    padding-right: 15px;
    margin: 0;
    cursor: pointer;
}

/* Adjustments for mobile screens */
@media screen and (max-width: 600px) {
    .reply_input {
        width: 100%;
        font-size: 10px;
        padding: 4px;
    }

    .btn_post_reply {
        display: block; /* make the button full width */
        width: 100%;
        height: 30px; /* adjust as needed */
        padding: 5px;
        font-size: 10px;
        text-align: center;
        line-height: 25px; /* adjust to be same as button's height */
    }

    .btn_delete_reply {
        font-size: 12px;
    }
}



/* footer content */

.footer {
    height: 100%;
    background-color: #000000;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer_nav_menu_block {
    margin-top: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer_menu_link {
    height: 149px;
    cursor: pointer;
    font-size: 16px;
    font-family: "Lora", "SemiBold";
    text-decoration: none;
    color: #fdc90f;
    margin-bottom: 20px;
    text-align: center;
}

.footer_menu_link:not(:last-child) {
    margin-right: 125px;
}

@media (max-width: 1070px) {
    .footer_menu_link:not(:last-child) {
        margin-right: 100px;
    }
}

@media (min-width: 360px) and (max-width: 1025px) {
    .footer_nav_menu_block {
        justify-content: center;
    }

    .footer_menu_link {
        flex-basis: 33.33%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .footer_menu_link:nth-child(5) {
        order: -1;
        flex-basis: 100%;
    }

    .footer_menu_link:not(:last-child) {
        margin-right: 10px;
    }
}

@media (min-width: 360px) and (max-width: 420px) {
    .footer_nav_menu_block {
        width: 340px;
    }
}

.menu_icon {
    display: block;
    margin: 0 auto;
}

.menu_text {
    display: block;
    padding-top: 21px;
}

.line_footer {
    width: 1310px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 59px;
}

@media (min-width: 360px) and (max-width: 1025px) {
    .line_footer {
        display: none;
    }
}

.block_txt_footer {
    display: flex;
    text-align: center;
    margin-top: 89px;
}

@media (min-width: 360px) and (max-width: 1200px) {
    .block_txt_footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 44px;
    }
    .block_txt_footer p {
        margin: 5px;
    }
}

.txt_footer {
    color: #ffffff;
}

.txt_footer_terms {
    color: #ffffff;
    padding-left: 5px;
}

.privacy_link,
.terms_link {
    color: #f5cb47;
}

.poem_content_1 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 20px;
    font-weight: 400;
    font-family: "Lora", "SemiBold";
}

.poem_content_1 a,
.poem_content_1 a:link,
.poem_content_1 a:visited,
.poem_content_1 a:hover,
.poem_content_1 a:active,
.poem_content_1 a:focus {
    color: #00AFD4 !important;
    text-decoration: none;
}

.poem_content_2 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 20px;
    font-weight: 400;
    font-family: "Lora", "SemiBold";
}

.poem_content_2 a,
.poem_content_2 a:link,
.poem_content_2 a:visited,
.poem_content_2 a:hover,
.poem_content_2 a:active,
.poem_content_2 a:focus {
    color: #00AFD4 !important;
    text-decoration: none;
}

@font-face {
    font-family: 'Adobe Jenson Pro Italic';
    src: url('../Adobe Jenson Pro Italic/Adobe Jenson Pro Italic.otf') format('opentype');
}

.action_buttons {
    display: flex;
    justify-content: space-between;
}
.delete_button {
    color: red;
    cursor: pointer;
}
.cancel_button {
    color: grey;
    cursor: pointer;
}
@media screen and (max-width: 600px) {
    .action_buttons {
        flex-direction: column;
    }
}

.thumbnail {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px; /* adjust this value for more or less rounded corners */
}

.highlight {
    color: #fdc90f;
    font-style: italic;
    position: relative;
}

.highlight:hover::after,
.highlight.active::after {
    content: attr(data-definition);
    position: absolute;
    background: #1d731d;
    border: 1px solid #aaa;
    padding: 10px;
    color: white;
    z-index: 10;
    bottom: calc(100% + 10px);
    left: 50%;
    border-radius: 5px;
    transform: translateX(-50%);
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    white-space: pre-wrap;
    min-width: 300px;
    font-style: italic;
}

.highlight:hover::before,
.highlight.active::before {
    content: "";
    position: absolute;
    bottom: calc(100% - 5px);
    left: 50%;
    border-width: 10px;
    border-style: solid;
    border-color: #1d731d transparent transparent transparent;
    transform: translateX(-50%);
    font-style: italic;
}

.highlight.small:hover::after,
.highlight.small.active::after {
    min-width: 150px;
}

.highlight.medium:hover::after,
.highlight.medium.active::after {
    min-width: 200px;
}

.highlight.large:hover::after,
.highlight.large.active::after {
    min-width: 300px;
}

/* Responsive CSS */
@media (max-width: 600px) {
    .highlight:hover::after,
    .highlight.active::after {
        min-width: 200px; /* adjust for smaller screens */
        font-size: 0.8em; /* reduce font size */
    }
}

@media (max-width: 400px) {
    .highlight:hover::after,
    .highlight.active::after {
        min-width: 150px; /* adjust for even smaller screens */
        font-size: 0.6em; /* further reduce font size */
    }
}


.poem_content_1 img,
.poem_content_2 img {
    border-radius: 10px;
}

.button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    margin-left: -8px;
}

.nav-item {
    display: flex;
    align-items: center; /* This will vertically align the button and label */
    flex-wrap: nowrap; /* Prevent wrapping of items */
}

.arrow-button {
    background: #4a4a4a;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 30%;
    opacity: 0.6;
    transition: opacity 0.3s;
    margin: 0 10px; /* Space between the button and the label */
}

.arrow-label {
    font-size: 1rem;
    color: #fff; /* Adjust the color to match your design */
    user-select: none;
}

/* Adjust hover effect */
.arrow-button:hover {
    opacity: 1;
}

@media (max-width: 600px) {
    .button-container {
        /* flex-direction: column; Remove this line to keep items in a row */
        justify-content: space-between; /* This will maintain spacing on small screens */
        width: 100%; /* You can adjust the width to 100% for small screens if needed */
        margin-left: 0; /* Reset any negative margins that might cause issues */
    }

    .nav-item {
        margin-bottom: 0; /* Remove the bottom margin for mobile view */
    }

    .arrow-button {
        padding: 5px 10px; /* Reduce padding on smaller screens if needed */
        font-size: 1.5rem; /* Reduce the font size of the arrow if it's too large */
    }

    .arrow-label {
        font-size: 0.8rem; /* Adjust the font size of the label for small screens */
    }
}

