.legend-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 calc(var(--container-space)/2);
    background-color: var(--wp--preset--color--sable);
    border-radius: 30px;
    padding: 2rem;
}
.legend-container .btn-pass-wrapper .btn-pass{
    color: var(--wp--preset--color--gris);
    background-color: var(--wp--preset--color--white);
    border: 1px solid var(--wp--preset--color--gris);
    font-family: 'Poppins';
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 40px;
}
.legend-desktop-text-container{
    display: none;
}
@media (min-width: 821px) {
    .legend-container{
        flex-direction: row;
        margin: 0 var(--container-space);
        padding: 4rem;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    .legend-mobile-text-container{
        display: none;
    }
    .legend-desktop-text-container{
        display: flex;
        flex-direction: column;
        width: 50%;
    }
    .catmoon{
        display: flex;
        width: 30%;
        height: 100%;
    }

    .legend-container .btn-pass-wrapper{
        width: 100%;
        display: block !important;
    }

    .legend-container .btn-pass-wrapper button{
        margin-left: auto;
        margin-right: 12.5%;
       
    }

}