/* ---------------------------------------------------
                      PAGE
----------------------------------------------------*/
:root {
    --page-baner-height: 14em;
}
.page h1, h2, h3, h4, p {
    width: 100%;
}

.page div#banner{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #abd51c;
    height: var(--page-baner-height);
    width: 100%;
    box-sizing: border-box;
    box-shadow: inset 0 7px 9px -7px rgba(0,0,0,0.4);
    position: relative;
    background-image: url(../img/shapes.png), radial-gradient(circle, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.68)), url(../img/shapes.png);
    background-position: calc(50% - 15em) -91%, center center, calc(50% - 15em + 1.7em) calc(-91% - 0.6em);
    background-repeat: no-repeat;
    background-size: auto calc(1.5* var(--page-baner-height)), cover, auto calc(1.5* var(--page-baner-height));
    overflow: hidden; 
}

.page div#banner > .overlay-dpad {
    display: block;
    position: absolute;
    bottom: -152px;
    left: -875px;
    right: 0;
    height: 235px;
    width: 235px;
}

.page div#banner > h1:first-of-type,
.page div#banner > input:first-of-type {
    font-size: 2.2em;
    line-height: 1em;
    padding: 0;
    color: white;
    max-width: 1062px;
    text-align: center;
    font-weight: 600;
}

.page div#content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    text-align: center;
    margin: auto;
    box-sizing: border-box;
    width: 100%;
    max-width: 1080px;
    padding: 30px 40px 60px 40px;
    min-height: calc(100vh - var(--page-baner-height) - var(--nav-bar-height-expanded) - 10em);
}

@media only screen and (min-width: 1080px) {
    .page div#banner > h1:first-of-type,
    .page div#banner > input:first-of-type {
        font-size: 2.7em;
    }
}