/* ---------------------------------------------------
                      PAGE
----------------------------------------------------*/
:root {
    --page-baner-height: 14em;
}
.page h1, h2, h3, h4, p {
    width: 100%;
}
.page div#banner{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    background-image: url("../img/arabesque.png");
    background-repeat: repeat;
    background-size: 23.75em 13.67em ;
    background-color: #abd51c;
    height: var(--page-baner-height);
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: inset 0 7px 9px -7px rgba(0,0,0,0.4);
}

.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;
    }
}