#popup_main_cont {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(1rem);
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#popup_card_main_cont {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    padding: 1rem;
    border-radius: 1rem;
}
#popup_card_inner_cont {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 40rem;
    height: 20rem;
    overflow: hidden;
    border-radius: 0.25rem;
}

#popup_distro_logo_cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    z-index: 1;
}
#popup_logo_text {
    font-size: 0.65rem;
    z-index: 1;
}
#popup_distro_logo {
    width: 21.5rem;
    z-index: 1;
}
#popup_main_text {
    font-size: 1.75rem;
    margin-top: 1.5rem;
    z-index: 1;
}
#popup_sub_text {
    text-align: center;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    max-width: 30rem;
    margin-bottom: 1.5rem;
    z-index: 1;
}
.popup_blend {
    /* display: none; */
    position: absolute;
    max-width: 100%;
    width: 28rem;
    top: 0;
    left: -100%;
    z-index: 0;
}
.popup_btn {
    border: none;
    height: 2.5rem;
    width: 11rem;
    border-radius: 0.5rem;
    font-weight: 500;
    margin-inline: 1rem;
    cursor: pointer;
}
#pop_up_enter_btn {
    background-color: var(--distro-light-green-2);
}
#pop_up_exit_btn {
    background-color: #bf8e07;
    color: white;
}
#popup_blend_1 {
    left: -19.5rem;
    top: -29rem;
    transform: rotate(-42deg);
}
#popup_blend_2 {
    left: -27rem;
    top: 2rem;
    transform: rotate(-110deg);
}
#popup_btn_cont {
    z-index: 3;
}
@media screen and (max-width: 500px) {
    #popup_card_inner_cont {
        padding: 2 rem;
        text-align: center;
        width: 100%;
        height: 28rem;
    }
    #popup_card_main_cont {
        width: 100vw;
        padding: 1rem;
    }
    #popup_btn_cont {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #popup_sub_text {
        width: 80vw;
    }
}
