/*
   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: 14px;
}

body {
  font-family: Roboto;
  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;
  /* padding: 1.0rem; */
  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;
  background-color: #909090;
}

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

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

.right-side-bottom {
  height: 18.625rem;
  background-color: #fff;
  overflow: hidden;
}

#gsap-iframe {
  width: 100%;
  height: 100%;
}

/* NEWS PANE */

.news-slide {
  display: flex;
}

.news-slide > img {
  width: 18.625rem;
  height: 18.625rem;
}

.slick-dots {
  bottom: 1rem;
}

.slick-dots li button:before {
  color: green;
}

.slick-dots li.slick-active button:before {
  color: green;
}

/* TICKER */

.marquee {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  overflow: hidden;

  margin-left: 10rem;
}

.meal {
  font-weight: bold;
  color: green;
}