
my-popup {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    pointer-events: all;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);

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


    transition: opacity 0.5s;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
}

body.popup my-popup {
    opacity: 1;
    pointer-events: all;
}

my-popup div.stage_win {
    background-color: rgba(255,255,255,1);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 2rem 2rem 2rem;

    border-radius: 2rem;
}

my-popup div.stage_text {
    height: 100%;
    background-color: rgba(255,255,255,1);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 3rem 3rem 3rem;
    text-align: center;


    font-family: Intro, Arial, Helvetica, sans-serif;
    font-size: 2.4rem;

    border-radius: 2rem;
}

my-popup div.stage_btns {
    height: auto;
    background-color: rgba(255,255,255,1);

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

    border-radius: 2rem;
}

my-popup div.stage_btns button {
    border: 0;
    padding: 1.4rem 3rem;
    margin: 0 1rem;
    min-width: 10rem;
    border-radius: 5rem;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 100;
    outline: 3.5px solid #be3d3d;
    font-family: Intro, Arial, Helvetica, sans-serif;
    font-size: 1.8rem;
    color: #FFFFFF;
    cursor: pointer;
}