/*
   Fixed-size web application
   Uses rem units for proportional scaling during development
   Layout is intentionally non-responsive
*/

/*   **********    SETUP OF DOCUMENT     **********     */

html {
    /* FINAL SIZE FOR MAKING IT 1920x1080 */
    font-size: 16px;
    /* SIZE FOR DEVELOPMENT */
    /* comment below out for final submission */
    /* can change based on size needed */
    /* font-size: 8px; */
}

body {
    background-color: #000;
}

/*   **********    MAIN ELEMENTS     **********     */

main {
    width: 120.0rem;
    height: 67.5rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 42.0rem 78.0rem;
    grid-template-rows: 62.5rem 5.0rem;
}

/*   **********    Container ELEMENTS     **********     */

.left-side {
    background-color: #BBB;
    display: grid;
    grid-template-rows: 12.5rem 12.5rem 37.5rem;
}

.right-side {
    background-color: #AAA;
    display: grid;
    grid-template-rows: 43.875rem 18.625rem;
}

.bottom {
    grid-column: 1 / -1;
    background-color: #ABABAB;
}

/*   **********    Content ELEMENTS     **********     */

main>div>div,
.bottom {
    color: #000;
    font-size: 2.0rem;
}

/* REMOVE CSS STYLE ABOVE BEFORE STYLING BELOW */

.left-side-top {
    height: 12.5rem;
    background-color: #727272;
}

.left-side-middle {
    height: 12.5rem;
    padding: 1.0rem;
    background-color: #909090;
}

.left-side-bottom {
    height: 37.5rem;
    padding: 1.0rem;
    background-color: #bdbdbd;
}

.right-side-top {
    height: 43.875rem;
    padding: 1.0rem;
    background-color: #ABABAB;
}

.right-side-bottom {
    height: 18.625rem;
    padding: 1.0rem;
    background-color: #888;
}

.left-side-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: white;
}

.branding {
    display: flex;
    align-items: center;
    justify-content: center;
}

.branding img {
    width: 42rem;
    height: auto;
}

.time-date {
    display: grid;
    grid-template-columns: 13rem 29.625rem;
    height: 4.6rem;
    gap: .1rem;
    color: aliceblue;
}

.time {
    font-family: lato;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #006837;
    font-weight: 700;
}

.date {
    font-family: lato;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3e2b2f;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.date-suffix {
    font-size: 0.5em;
    vertical-align: super;
    margin-left: 2px;
    margin-bottom: 1rem;
    font-weight: 400;
}
#gsap-iframe {
     width: 100%;
     height: 100%;
}