

main
{
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    max-width: inherit;
    box-shadow: none;
}

.block
{
    margin: 3em auto;
    border-radius: 2em;
    padding: 1.5em;
    box-shadow: 0 .1em .1em rgba(0, 0, 0, .6);
    background: #ffffff;
}

.block,
.legend
{
    min-height: 3rem;
}

.legend
{
    display: flex;
    height: 100dvh;
    flex-flow: row wrap;
    align-content: center;
    justify-content: space-evenly;
    align-items: center;
    text-shadow: 0 .1em .1em rgba(0, 0, 0, .3);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 -2rem;
    margin-top: max(-9rem, -12dvw);
    box-shadow: 0 .1em .1em rgba(0, 0, 0, .6);
}

.legend .text,
.legend .call_to_action
{
    color: #ffffff;
    z-index: 1;
    padding: 2.5em;
}

.legend .text strong
{
    font-size: 2em;
}

.legend > img
{
    max-height: 100%;
}


@media screen and (max-width: 750px)
{
    .legend
    {
        margin-top: -7em;
    }
}