body, html {
    margin: 0;
    padding: 0;
    font-family: Poppins, serif;
    box-sizing: border-box;
    overflow-x: hidden; /* Ukrywa przesuwanie w poziomie na całej stronie */
}

/* Header (Logo and nav) */

.visually-hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    color: white;
}

header {
    position: fixed;
    top: 0;

    width: 100vw;
    padding-bottom: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: white;

    overflow: hidden;
    z-index: 9999;
}

.header_content {

    margin-left: 60px;
    margin-right: 30px;

    width: 100%;
    max-width: 2900px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_logo {
    font-size: 24px;
    font-weight: normal;
}

.nav_logo span {
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    flex-wrap: nowrap;
}

.language_menu {
    width: 100%;
    display: flex;
    justify-content: right;
}

.lang {
    margin-left: 5px;
    margin-top: 5px;
    display: block;
}

.lang a {
    text-decoration: none;
    color: black;
    font-family: Poppins, sans-serif;
    display: block;

    white-space: nowrap;
}

.lang a:hover {
    opacity: 50%;
}


nav ul li {
    margin-left: -1px;
    width: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
}

nav ul li a {
    padding: 20px;

    text-decoration: none;
    color: black;

    display: block;

    white-space: nowrap;
}

nav ul li a:hover {
    background-color: #f0f0f0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hamburger_menu {
    padding-left: 20px;
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 9999;
}

.hamburger_menu span {
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 4px 0;
    transition: 0.4s;
}

/* Mobile Menu CSS */
.mobile_menu {
    margin-left: -60px;
    padding-left: 60px;

    display: none;
    flex-direction: column;
    list-style: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 9999;
}

.mobile_menu li {
    width: 100%;
    border-bottom: 1px solid black;
    margin-top: -1px;
    z-index: 9999;
}

.mobile_menu li a {
    text-align: center;
    z-index: 9999;
}


.artists_section {
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9998;

    padding-bottom: 100px;
}

.artists_columns {
    display: flex;
    z-index: 9998;
    max-width: 1200px;
}

.popup_columns {
    display: flex;
    z-index: 10000;
    width: 80%;
    max-width: 1600px;
}

.photo_column {

    width: 30vw;
    height: auto;

    display: flex;
    flex-direction: column;
    line-height: 100%;
    z-index: 9998;
    margin-right: 5px;
    margin-left: 5px;
}

.popup_photo_column {

    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
    line-height: 100%;
    z-index: 10000;
    margin-right: 5px;
    margin-left: 5px;
}

.popup_text_column {

    width: 100%;
    height: auto;

    display: inline-block;
    vertical-align: top;
    z-index: 10000;
    margin-right: 5px;
    margin-left: 5px;
}


.photo_column_link {
    text-decoration: none;
    color: inherit;
}

.photo_column:hover {
    opacity: 0.5;
    transition: 0.4s;
}

.profile_photo {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain; /* Sprawia, że obrazek mieści się w kontenerze i zachowuje proporcje */
}

.popup_profile_photo {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain; /* Sprawia, że obrazek mieści się w kontenerze i zachowuje proporcje */
}

.text_column {
    font-family: Poppins, sans-serif;

    width: 40vw;
    height: 20vw;
    max-height: 500px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: left;

    margin-right: 5px;
    margin-left: 5px;
}


.horizontal_line {
    height: 1px;
    width: calc(100% - 60px); /* full width minus the margins */
    margin-right: 30px;
    margin-left: 30px;
    max-width: 2940px;

    background-color: black;

    z-index: 9998;
}

.header-section {
    min-height: 200px;
    height: 20vh;
    width: calc(100% - 60px); /* full width minus the margins */
    max-height: 200px;
    max-width: 2940px;

    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row; /* Wiersz */

}
.artists-title {
    font-family: Popp ins, sans-serif;
    font-weight: 500;
    font-size: 90px;
    text-align: left;
    margin-left: 10%;
}


.title_horizontal_line {
    height: 1px;
    flex-grow: 1; /* Umożliwia rozciągnięcie linii w prawo */
    margin-left: 10%; /* Odstęp między napisem a linią */
    background-color: black;
}

/* Inner section universal container */

.flex_container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup_flex_container {
    display: flex;
    justify-content: left;
    align-items: start;
}


/* Vertical lines */

.lines_container {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);

    width: 100%;
    max-width: 3000px;

    z-index: 999;
}

.line {
    position: fixed;
    background-color: black;
    z-index: 999;
}

.ver {
    position: fixed;
    width: 1px;
    height: 100vh;
    z-index: 999;
}

.lef {
    position: fixed;
    left: 30px;
    z-index: 999;
}

.rig {
    position: fixed;
    right: 30px;
    z-index: 999;
}

/*Top animation section*/


.top_images_container {
    position: relative;
    top: 0;
    bottom: 0;

    width: 100vw;
    height: 95vh;
    max-height: 1600px;
    margin-bottom: 50px;

    justify-content: center;
    align-items: center;
    display: flex;

    overflow: hidden;
}

@media only screen and (min-width: 1200px) and (max-height: 950px) {
    .top_images_container {
        min-height: 1000px;
    }
}

@media only screen and (max-width: 800px) {
    .top_images_container {
        overflow: visible;
    }
}

.top_images_container video {
    min-height: 100%;
    width: 100%;
    object-fit: cover;
}

.top_images_container img {
    min-height: 100%;
    width: 100%;
    object-fit: cover;

}

.overlay {
    position: absolute;
    top: 55%;
    left: 50%;

    transform: translate(-50%, -50%);
    width: 40%;
    height: auto;
    max-width: 1000px; /* Set the max width */
    max-height: 1000px; /* Set the max height */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.artists-title {
    font-family: Popp ins, sans-serif;
    font-weight: 500;
    font-size: 70px;
    text-align: left;
    margin-left: 10%;
}

.artist_description_container {
    width: 100%;
    height: 100%; /* Zajmuje 100% wysokości rodzica */
    /*text-align: justify;*/
    text-align: left;

    display: inline;
    justify-content: space-between; /* Zapewnia rozciągnięcie elementów wewnątrz */
    z-index: 9998;
}

.popup_artist_description_container {
    width: 90%;
    height: 100%; /* Zajmuje 100% wysokości rodzica */
    /*text-align: justify;*/
    text-align: left;
    vertical-align: top;

    display: inline-block;
    justify-content: left; /* Zapewnia rozciągnięcie elementów wewnątrz */
    z-index: 10000;
}


.artist_description_title {
    font-weight: 400;
    line-height: 150%;
    font-size: 1.5rem;
}

.popup1_artist_description_title {
    font-weight: 400;
    line-height: 150%;
    font-size: 1.5rem;
}

.artist_description_text {
    content: "";
    justify-content: space-between;
    display: flex;
    font-size: 20px;

    position: relative;

    max-width: 100vw;

}

.popup1_artist_description_text {
    content: "";
    justify-content: space-between;
    display: flex;
    font-size: 20px;

    position: relative;

    max-width: 100vw;

}

.popup_artist_description_text {
    justify-content: left;
    display: inline-block;
    font-size: 1rem;
    line-height: 150%;
    position: relative;
    vertical-align: top;
    margin-right: 5px;
    margin-left: 5px;
}



.store_description_text {
    content: "";
    justify-content: left;
    display: inline;
    font-size: 40px;

    margin-left: 10%;
    margin-right: 10%;

    height: 100%;
}

.store_description_text2 {
    content: "";
    justify-content: left;
    display: inline;
    font-size: 20px;

    margin-left: 10%;
    margin-right: 10%;

    height: 100%;
}

.store_description_text3 {

    content: "";
    justify-content: left;
    display: inline;
    font-size: 20px;

    margin-left: 10%;
    margin-right: 10%;

    height: 100%;

}

.footer_container {

    background-color: #eaccc9;

    width: calc(100% - 60px); /* full width minus the margins */
    max-width: 2940px;
    height: 500px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-left: auto;
    margin-right: auto;

    overflow: hidden;

    position: relative;
}

.footer_container img {
    position: absolute;
    z-index: 999;
    left: 0;
    max-width: 100%;
    height: auto;
}

.footer_flex_container {
    display: flex;
    justify-content: left;
    align-items: start;
    width: 100%;
    z-index: 1000;
}

.footer_column {
    margin: 0 10px;
    display: inline;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 9998;
    height: 250px;
    padding-bottom: 0;
}

.footer_column_sec {
    margin: 0 10px;
    display: inline;
    margin-right: auto;
    position: relative;
    z-index: 9998;
    height: 350px;
    padding-bottom: 0;

    margin-left: 0;
}

.footer_nav_logo {
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 40px;
}

.footer_nav_logo span {
    display: block;
}

.footer_container h2 {
    font-size: 25px;
    color: #000;
    line-height: 200%;
    font-weight: 500;
}

.footer_container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: Poppins, sans-serif;
    z-index: 9998;
    position: relative;
    height: 100%;
}

.footer_container li {
    font-size: 20px;
    color: black;
    line-height: 250%;
    font-weight: 300;
    position: relative;
    font-family: Poppins, sans-serif;
    z-index: 9998;
}

.footer_container a {
    color: black;
    text-decoration: none;
}
.footer_container a:hover {
    color: black;
    text-decoration: underline;
}

.overlay_class {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 10000;
}

.overlay_class:target {
    visibility: visible;
    opacity: 1;
    z-index: 10000;
}

.popup {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    background: #fff;
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
    max-width: 80vw;
}

.popup h2 {
    margin-top: 0;
    color: #333;
}

.popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    z-index: 10001;
}

.popup .close:hover {
    color: #FF4050;
}

.popup .content {
    overflow: hidden;
    padding: 10px;
    max-height: 80vh;
}

.buy_button {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    margin-left:5px;
    text-transform: uppercase;
    color: #FF4050;
}

.buy_button:hover {
    color: #eaccc9;
}


@media only screen and (min-width: 800px) and (max-width: 1600px) {
    nav ul li {
        margin-left: -1px;
        width: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid black;
    }

    nav ul li a {
        padding: 20px;

        text-decoration: none;
        color: black;

        display: block;

        white-space: nowrap;
    }

    .horizontal_line {
        opacity: 0;
    }

    .lef {
        position: fixed;
        left: 15px;
        z-index: 999;
    }

    .rig {
        position: fixed;
        right: 15px;
        z-index: 999;
    }


    .header-section {
        min-height: 200px;
        height: 20vh;
        width: calc(100% - 30px); /* full width minus the margins */
        max-height: 200px;
        max-width: 2940px;

        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        flex-direction: row; /* Wiersz */

    }

    .artist_description_container {
        width: 100%;
        height: 100%; /* Zajmuje 100% wysokości rodzica */
        /*text-align: justify;*/
        text-align: left;

        display: inline;
        justify-content: space-between; /* Zapewnia rozciągnięcie elementów wewnątrz */
        z-index: 9998;
    }

    .popup_artist_description_container {
        width: 90%;
        height: 100%; /* Zajmuje 100% wysokości rodzica */
        /*text-align: justify;*/
        text-align: left;
        vertical-align: top;

        display: inline-block;
        justify-content: left; /* Zapewnia rozciągnięcie elementów wewnątrz */
        z-index: 10000;
    }



    .artists_columns {
        display: flex;
        z-index: 9998;
        max-width: 1200px;
    }

    .popup_columns {
        display: flex;
        z-index: 10000;
        width: 90%;
        max-width: 1200px;
    }

    .text_column {
        font-family: Popp ins, sans-serif;

        width: 100vw;
        height: auto;
        max-height: 1600px;

        justify-content: center;
        align-items: center;
        display: block;

        text-align: left;

        margin-right: 0;
        margin-left: 0;
        float: left;
    }

    .artist_description_title {
        font-weight: 400;
        line-height: 150%;
        font-size: 1.5rem;
    }

    .popup1_artist_description_title {
        font-weight: 400;
        line-height: 150%;
        font-size: 1.5rem;
    }

    .artist_description_text {
        content: "";
        justify-content: space-between;
        display: flex;
        font-size: 20px;

        position: relative;

        max-width: 100vw;

    }

    .popup1_artist_description_text {
        content: "";
        justify-content: space-between;
        display: flex;
        font-size: 20px;

        position: relative;

        max-width: 100vw;

    }


    .popup_artist_description_text {
        justify-content: left;
        display: inline-block;
        font-size: 1rem;
        line-height: 150%;
        vertical-align: top;
        position: relative;

    }



    .store_description_text {
        content: "";
        justify-content: left;
        display: flex;
        font-size: 40px;


        height: 100%;
    }


    .store_description_text2 {
        content: "";
        justify-content: left;
        display: flex;
        font-size: 20px;

        height: 100%;
    }

    .store_description_text3 {
        content: "";
        justify-content: left;
        display: inline;
        font-size: 20px;

        margin-left: 10%;
        margin-right: 10%;

        height: 100%;
    }


    .footer_container {

        background-color: #eaccc9;

        width: calc(100% - 30px); /* full width minus the margins */
        max-width: 2940px;
        height: 450px;

        display: flex;
        justify-content: center;
        align-items: center;

        margin-left: auto;
        margin-right: auto;

        overflow: hidden;

        position: relative;
    }

    .footer_flex_container {
        display: flex;
        justify-content: left;
        align-items: start;
        width: 100%;
    }

    .footer_nav_logo {
        font-size: 25px;
        font-weight: normal;
        margin-bottom: 40px;
    }


    .footer_container h2 {
        font-size: 25px;
        color: #000;
        line-height: 200%;
        font-weight: 500;
    }

    .footer_container li {
        font-size: 15px;
        color: black;
        line-height: 250%;
        font-weight: 300;
        position: relative;
        font-family: Poppins, sans-serif;
        z-index: 9998;
    }

    .popup {
        position: absolute;
        top: 50%;
        left: 50%;

        transform: translate(-50%, -50%);

        background: #fff;
        border-radius: 5px;
        transition: all 0.5s ease-in-out;
        max-width: 80vw;
        width: 100%;
    }

    .popup h2 {
        margin-top: 0;
        color: #333;
    }

    .popup .close {
        position: absolute;
        top: 20px;
        right: 30px;
        transition: all 200ms;
        font-size: 30px;
        font-weight: bold;
        text-decoration: none;
        color: #333;
        z-index: 10001;
    }

    .popup .close:hover {
        color: #FF4050;
    }

    .popup .content {
        overflow: hidden;
        padding: 10px;
        max-height: 80vh;
    }

    .popup_profile_photo {
        position: relative;
        width: 90%;
        height: auto;
        object-fit: contain; /* Sprawia, że obrazek mieści się w kontenerze i zachowuje proporcje */
    }

    .popup_photo_column {

        width: 100%;
        height: auto;

        display: flex;
        flex-direction: column;
        line-height: 100%;
        z-index: 10000;
        margin-right: 5px;
        margin-left: 5px;
    }
}

@media only screen and (max-width: 800px) {

    .header_content {
        margin-left: 5vw;
        margin-right: 5vw;
    }

    .horizontal_line {
        opacity: 0;
    }
    .lines_container {
        opacity: 0;
    }
    .desktop_menu {
        display: none;
    }
    .hamburger_menu {
        display: flex;
        z-index: 9999;
    }
    .overlay {
        position: absolute;
        top: 55%;
        left: 50%;

        transform: translate(-50%, -50%);
        width: 70%;
        height: auto;
        max-width: 1000px; /* Set the max width */
        max-height: 1000px; /* Set the max height */

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    @media (orientation: landscape) {
        .overlay {
            position: absolute;
            top: 55%;
            left: 50%;

            transform: translate(-50%, -50%);
            width: 40%;
            height: auto;
            max-width: 1000px; /* Set the max width */
            max-height: 1000px; /* Set the max height */

            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
    }


    .header-section {
        min-height: 200px;
        height: 10vh;
        width: calc(100% - 30px); /* full width minus the margins */
        max-height: 200px;
        max-width: 2940px;

        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        flex-direction: row; /* Wiersz */

    }

    .artists-title {
         font-family: Popp ins, sans-serif;
         font-weight: 500;
         font-size: 40px;
         text-align: left;
         margin-left: 0;
     }

    .artist_description_container {
        width: 100%;
        height: 100%; /* Zajmuje 100% wysokości rodzica */
        /*text-align: justify;*/
        text-align: left;

        display: inline;
        justify-content: space-between; /* Zapewnia rozciągnięcie elementów wewnątrz */
        z-index: 9998;
    }

    .popup_artist_description_container {
        width: 100%;
        height: 100%; /* Zajmuje 100% wysokości rodzica */
        /*text-align: justify;*/
        text-align: left;
        vertical-align: top;

        display: inline-block;
        justify-content: left; /* Zapewnia rozciągnięcie elementów wewnątrz */
        z-index: 10000;
    }



    @media (orientation: landscape) {
        .artists_columns {
            display: flex;
            z-index: 9998;

            max-width: 40%;
        }

        .artist_description_title {

            font-weight: 400;
            line-height: 100%;
            font-size: 1rem;
        }

        .artist_description_text {
            content: "";
            justify-content: space-between;
            display: flex;
            font-size: 0.8rem;

            margin-top: -15px;
            position: relative;

            max-width: 100vw;

        }

    }

    @media (orientation: portrait) {
        .artists_columns {
            display: block;
            z-index: 9998;

            max-width: 1200px;
        }
        .artist_description_text {
            content: "";
            justify-content: space-between;
            display: flex;
            font-size: 20px;

            margin-top: -15px;
            position: relative;
            line-height: 110%;

            max-width: 100vw;

        }

        .artist_description_title {

            font-weight: 400;
            line-height: 150%;
            font-size: 1.5rem;
        }

    }


    .popup_columns {
        display: flex;
        z-index: 10000;
        width: 100%;
        max-width: 1200px;
    }

    .text_column {
        font-family: Popp ins, sans-serif;

        width: 100vw;
        height: auto;
        max-height: 1600px;

        justify-content: center;
        align-items: center;
        display: block;

        text-align: left;

        margin-right: 0;
        margin-left: 0;
        float: left;
    }

    .photo_column {

        width: 90vw;
        height: auto;

        margin-top: 50px;

        display: flex;
        flex-direction: column;
        line-height: 100%;
        z-index: 9998;
        margin-right: 5px;
        margin-left: 5px;

    }


    .popup_photo_column {

        width: 100%;
        height: auto;

        justify-content: center;
        align-items: center;
        display: block;

        line-height: 100%;
        z-index: 10000;
        margin-right: 5px;
        margin-left: 5px;
    }


    .artists_section {
        height: auto;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 9998;

        padding-bottom: 0;
    }

    .popup_text_column {

        width: 100%;
        height: 100%;

        display: inline-block;
        vertical-align: top;
        line-height: 100%;
        z-index: 10000;
        margin-right: 5px;
        margin-left: 5px;

    }


    .popup1_artist_description_title {
        font-weight: 200;
        line-height: 150%;
        font-size: 0.7rem;
    }



    .popup1_artist_description_text {
        justify-content: space-between;
        display: flex;
        font-size: 0.5rem;

        margin-top: -15px;
        position: relative;

        max-width: 100vw;
    }


    .store_description_text {
        content: "";
        justify-content: left;
        display: flex;
        font-size: 40px;

        margin-left: 0;
        margin-right: 0;

        width: calc(100% - 30px);

        position: relative;
        left: 50%;
        transform: translate(-50%, 0);

        max-width: 100vw;

        height: 100%;
    }

    .store_description_text2 {
        content: "";
        justify-content: left;
        display: flex;
        font-size: 20px;

        margin-left: 0;
        margin-right: 0;

        width: calc(100% - 30px);

        position: relative;
        left: 50%;
        transform: translate(-50%, 0);

        max-width: 100vw;

        height: 100%;
    }

    .store_description_text3 {

        margin-bottom: -10%;


        content: "";
        justify-content: left;
        display: flex;
        font-size: 20px;

        margin-left: 0;
        margin-right: 0;

        width: calc(100% - 30px);

        position: relative;
        left: 50%;
        transform: translate(-50%, 0);

        max-width: 100vw;

        height: 100%;

    }


    .footer_container {

        background-color: #eaccc9;
        margin-top: 25px;

        width: 100%; /* full width minus the margins */
        max-width: 2940px;
        height: 200px;

        display: flex;
        justify-content: center;
        align-items: center;

        margin-left: auto;
        margin-right: auto;

        overflow: hidden;

        position: relative;
    }


    .footer_flex_container {

        transform: translate(0%, 20%);
        justify-content: center;
        align-items: center;
        width: 100%;

        display: flex;
    }

    .footer_nav_logo {
        font-weight: normal;
        font-size: 1rem;
        margin-bottom: 0;
    }

    .footer_container h2 {
        color: #000;
        line-height: 200%;
        font-size: 0.7rem;
        font-weight: 500;
    }

    .footer_container li {
        color: black;
        line-height: 200%;
        font-weight: 300;
        font-size: 0.5rem;
        position: relative;
        font-family: Poppins, sans-serif;
        z-index: 9998;
    }

    .footer_column {
        margin: 0 10px;
        display: inline;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 9998;
        height: 200px;
        padding-bottom: 0;
    }

    .footer_column_sec {
        margin: 0 10px;
        display: inline;
        margin-right: auto;
        position: relative;
        z-index: 9998;
        height: 225px;
        padding-bottom: 0;

        margin-left: 0;
    }
    .popup {
        position: absolute;
        top: 50%;
        left: 50%;

        transform: translate(-50%, -50%);

        background: #fff;
        border-radius: 5px;
        transition: all 0.5s ease-in-out;
        width: 100vw;
        height: auto;
    }

    .popup h2 {
        margin-top: 0;
        color: #333;
    }

    .popup .close {
        position: absolute;
        top: -2px;
        right: 5px;
        transition: all 200ms;
        font-size: 30px;
        font-weight: bold;
        text-decoration: none;
        color: #333;
        z-index: 10001;
    }

    .popup .close:hover {
        color: #FF4050;
    }

    .popup .content {
        overflow: hidden;



        width: 100%;
    }

    .popup_flex_container {
        display: flex;
        justify-content: left;
        align-items: start;
    }

    @media (orientation: landscape) {
        .popup_artist_description_text {
            justify-content: left;
            display: inline-block;
            font-size: 0.6rem;
            line-height: 150%;
            vertical-align: top;

            margin-top: 15px;
            margin-left: 0;
            position: relative;

        }
        .buy_button {
            font-size: 1rem;
            font-weight: bold;
            text-decoration: none;
            margin-left:0px;
            text-transform: uppercase;
            color: #FF4050;
        }
    }

    @media (orientation: portrait) {
        .popup_artist_description_text {
            justify-content: left;
            display: inline-block;
            font-size: 0.6rem;
            line-height: 150%;
            vertical-align: top;

            margin-top: 15px;
            margin-left: 0;
            position: relative;

        }
        .buy_button {
            font-size: 1rem;
            font-weight: bold;
            text-decoration: none;
            margin-left:0px;
            text-transform: uppercase;
            color: #FF4050;
        }
    }

    .popup_profile_photo {
        position: relative;
        width: 90%;
        height: auto;
        object-fit: contain; /* Sprawia, że obrazek mieści się w kontenerze i zachowuje proporcje */
    }


}
