/* import generic mixins */
/* import page sections style mixins */
/* output */
:root {
  --primary-digital-blue: #1A92C2;
  --primary-american-navy: #002F6C;
  --primary-barn-red: #9D2235;
  --secondary-grazing-green: #78BE21;
  --secondary-tractor-red: #DA291C;
  --secondary-subtle-silver: #d9d9d9;
  --secondary-butter-yellow: #f6be00;
  --secondary-milk-white: #ffffff;
  --dei-orange: #f57f29;
  --cell-color: #eef2f4;
  --cell-border: #d7d8df;
  --copyright: #6b6b70;
  --column-basis: 0%;
  --initial-cell-position-top: 0px;
  --initial-cell-position-left: 0px;
  --initial-cell-width: 0px;
  --initial-cell-height: 0px;
  --expanded-cell-position-top: 0px;
  --expanded-cell-position-left: 0px;
  --expanded-cell-width: 0px;
  --expanded-cell-height: 0px;
}

* {
  box-sizing: border-box; }

html {
  width: 100%;
  margin: 0px; 
}

body {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
  margin: 0px; 
  background-color: var(--primary-american-navy);
}
#dei-band {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  margin: 0;
}
#dei-band div:nth-child(1) {
  flex-grow: 1;
  background-color: var(--secondary-tractor-red);
}
#dei-band div:nth-child(2) {
  flex-grow: 1;
  background-color: var(--dei-orange);
}
#dei-band div:nth-child(3) {
  flex-grow: 1;
  background-color: var(--secondary-butter-yellow);
}
#content-wrapper {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
header {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #FFFEF7;
  font-family: "ff-good-web-pro";
  text-shadow: 0.1rem 0.1rem var(--primary-american-navy);
}
#container-logo {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
#dfa-logo {
  height: min-content;
}
#container-hero {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#container-deiLogo, #container-jeopardy {
  height: min-content;
}
/* Temporary style for placeholder text in hero */
#container-hero>div>h1 {
  margin: 0;
}
#jeopardy {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  width: 100%;
}
form {
  display: flex;
  flex-flow: column nowrap;
  color: var(--secondary-milk-white);
  margin: 0;
  letter-spacing: 1px;
  width: 100%;
}
form>p {
  text-align: center;
  font-family: "ff-good-web-pro";
}
label {
  font-family: "ff-good-web-pro-condensed";
  font-weight: bold;
  margin-bottom: 0.3rem;
}
input {
  letter-spacing: 1px;
  font-family: "ff-good-web-pro";
  padding: 1rem;
}
#input-name {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-top: 2rem;
}
.name {
  display: flex;
  flex-flow: column nowrap;
  width: 49%;
}
.error {
  color: var(--secondary-tractor-red);
}
.form-error {
  font-family: "ff-good-web-pro";
  text-align: center;
}
input[type="text"]:focus {
  outline-color: var(--secondary-grazing-green);
}
.button {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-family: "ff-good-web-pro-condensed";
  font-weight: bold;
  letter-spacing: 1px;
  width: min-content;
  cursor: pointer;
}
.button>img {
  height: 100%;
}
.button>p {
  font-size: 1.5rem;
  margin: 3px 0px 0px 0.5rem;
  padding: 0px;
}
#container-game {
  font-family: "ff-good-web-pro-condensed";
  font-weight: bold;
  width: 100%;
  background-color: var(--secondary-milk-white);
}
#game {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.col {
  flex-basis: var(--column-basis);
  flex-grow: 1;
}
.col:last-child>.cell {
  border-right: solid var(--cell-border);
}
.cell { 
  margin: 0;
  padding: 0;
  border-left: solid var(--cell-border);
  border-top: solid var(--cell-border);
}
.cell:last-child {
  border-bottom: solid var(--cell-border);
}
.heading, .points {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center; 
  align-items: center;
}
.heading {
  background-color: var(--primary-digital-blue);
  color: var(--secondary-milk-white);
  text-align: center;
}
.heading>h1 {
  padding: 0;
  margin: 0;
  letter-spacing: 1px;
}
.points {
  width: 100%;
  height: 100%;
  background-color: var(--cell-color);
}
.points>h2 {
  padding: 0;
  margin: 0;
}
.points:hover {
  transition: all 0.3s ease;
}
.question {
  border: solid var(--cell-border);
  background-color: var(--primary-american-navy);
  color: var(--secondary-milk-white);
}
.question>div>h4 {
  font-weight: normal;
}
.questionInitial {
  position: fixed;
  z-index: 1000;
  width: var(--initial-cell-width);
  height: var(--initial-cell-height);
  top: var(--initial-cell-position-top);
  left: var(--initial-cell-position-left);
  overflow: hidden;
}
.questionExpanded {
  position: fixed;
  z-index: 1000;
  width: var(--expanded-cell-width);
  height: var(--expanded-cell-height);
  top: var(--expanded-cell-position-top);
  left: var(--expanded-cell-position-left);
  overflow: hidden;
}
.question>div>h3,h4 {
  font-family: "ff-good-web-pro";
  letter-spacing: 1px;
}
.expand-enter-from {
  width: var(--initial-cell-width);
  height: var(--initial-cell-height);
  top: var(--initial-cell-position-top);
  left: var(--initial-cell-position-left);
}
.expand-enter-active {
  transition: all 1s ease;
}
.expand-enter-to {
  width: var(--expanded-cell-width);
  height: var(--expanded-cell-height);
  top: var(--expanded-cell-position-top);
  left: var(--expanded-cell-position-left);
}
.expand-leave-from {
  width: var(--expanded-cell-width);
  height: var(--expanded-cell-height);
  top: var(--expanded-cell-position-top);
  left: var(--expanded-cell-position-left);
}
.expand-leave-active {
  transition: all 1s ease;
}
.expand-leave-to {
  width: var(--initial-cell-width);
  height: var(--initial-cell-height);
  top: var(--initial-cell-position-top);
  left: var(--initial-cell-position-left);
}
#return,#submit,#leave{
  margin-left: auto;
  margin-right: auto;
}
.correct {
  background-color: var(--secondary-grazing-green);
}
.incorrect {
  background-color: var(--secondary-tractor-red);
}
.container-score {
  text-align: center;
  color: var(--primary-american-navy);
  margin-bottom: 25px;
}
footer {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  background-color: var(--secondary-milk-white);
  width: 100%;
  height: min-content;
  font-family: "ff-good-web-pro";
  color: var(--copyright);
}
#container-footer {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
#container-tmm {
  padding: 0;
  margin: 0;
}

/******************** MOBILE ********************/
@media screen and (max-width: 767.9px) {
  #dei-band {
    height: 0.8rem;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
  }
  #content-wrapper {
    width: 100vw;
    padding: 0.5rem;
  }
  header {
    width: 100%;
  }
  #dfa-logo {
    width: 7rem;
  }
  #container-hero {
    margin: 1rem 0 0 0;
  }
  #container-deiLogo {
    width: 45%;
  }
  #container-jeopardy {
    width: 50%;
  }
  input {
    height: 1rem;
  }
  #input-name {
    margin-bottom: 1rem;
  }
  form {
    margin-bottom: 5rem;
  }
  form>input {
    margin-bottom: 1rem;
  }
  #container-game {
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
  #game {
    max-width: 100vw;
  }
  .col {
    height: 100%;
  }
  .heading {
    font-size: 0.4rem;
    height: 2rem;
  }
  .points {
    height: 3rem;
  }
  .question {
    padding: 2rem 1rem 0rem 1rem;
  }
  #submit,#leave {
    font-size: 1.5rem;
  }
  #container-footer {
    width: 100vw;
    padding: 0 0.5rem;
  }
  #container-tmm {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    width: 50%;
  }
  footer>div>p {
    white-space: nowrap;
    font-size: 0.6rem;
  }
}

/******************** Mobile (Landscape) *****************************/ 
@media screen and (max-width: 767.9px) and (orientation: landscape) {
  #dei-band {
    height: 0.8rem;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
  }
  #content-wrapper {
    width: 80vw;
    height: 100%;
  }
  #container-deiLogo {
    width: 40%;
  }
  #game {
    max-width: 100vw;
  }
  .col {
    height: 100%;
  }
  .heading {
    font-size: 0.4rem;
    height: 2rem;
  }
  .points {
    height: 4rem;
  }
  .question {
    padding: 1rem 1rem 0rem 1rem;
  }
  .question>h3 {
    font-size: 0.85rem;
  }
  .question>h4 {
    font-size: 0.85rem;
  }
  #return {
    font-size: 1rem;
  }
  #submit,#leave {
    font-size: 1.5rem;
  }
  #container-footer {
    width: 80vw;
  }
  #container-tmm {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    width: 30%;
  }
}


/******************** Tablet ********************/ 

@media screen and (min-width: 768px) {
#dei-band {
  height: 1.25rem;
}
#content-wrapper {
  width: 90vw;
  padding: 1rem;
}
header {
  width: 100%;
}
#dfa-logo {
  width: 9rem;
}
#container-hero {
  margin: 1.5rem 0 0 0;
}
#container-deiLogo {
  width: 35%;
}
#container-jeopardy {
  width: 50%;
}
label {
  font-size: 1.25rem;
}
input {
  height: 2rem;
  font-size: 1.25rem;
}
#input-name {
  margin-bottom: 1rem;
}
form {
  width: 80%;
  margin-bottom: 2rem;
}
form>p {
  font-size: 1.25rem;
}
form>input {
  margin-bottom: 1rem;
}
.form-error {
  font-size: 1.25rem;
}
#container-game {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
#game {
  max-width: 100vw;
  max-height: 100vh;
}
.col {
  height: 100%;
}
.heading {
  font-size: 0.8rem;
  height: 4rem;
}
.points {
  height: 5rem;
  font-size: 1.3rem;
}
.question {
  padding: 2rem 3rem 0rem 3rem;
}
.question>div>h3,h4 {
  font-size: 2rem;
  margin: 1rem;
}
#return {
  font-size: 2rem;
}
#submit,#leave {
  font-size: 1.75rem;
}
#container-footer {
  width: 90vw;
}
#container-tmm {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  width: 50%;
}
footer>p {
  font-size: 0.8rem;
}
}

/******************** Laptop ********************/
@media screen and (min-width: 992px) {
  #dei-band {
    height: 0.8rem;
  }
  #content-wrapper {
    width: 70vw;
    padding: 1rem;
  }
  header {
    width: 100%;
  }
  #dfa-logo {
    width: 10rem;
  }
  #container-hero {
    margin: 1.5rem 0 0 0;
  }
  #input-name {
    margin-bottom: 1rem;
  }
  form {
    width: 80%;
  }
  form>input {
    margin-bottom: 1rem;
  }
  input {
    font-size: 1.15rem;
  }
  #game {
    max-width: 100vw;
    max-height: 100vh;
  }
  .col {
    height: 100%;
  }
  .heading {
    font-size: 0.8rem;
    height: 4rem;
  }
  .points {
    height: 4rem;
    font-size: 1rem;
    cursor: pointer; 
  }
  .points:hover {
    font-size: 1.25rem;
  }
  .question {
    padding: 0.5rem 3rem 0rem 3rem;
  }
  .question>div>h3,h4 {
    font-size: 1.25rem;
    margin: 1rem;
  }
  .question>div>h4 {
    cursor: pointer;
  }
  #return {
    font-size: 1rem;
  }
  #submit,#leave {
    font-size: 1.5rem;
  }
  #container-footer {
    width: 70vw;
  }
  #container-tmm {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    width: 40%;
  }
  footer>p {
    white-space: nowrap;
  }
}

/******************** Desktop ********************/
@media screen and (min-width: 1200px) {
  #dei-band {
    height: 1rem;
  }
  #content-wrapper {
    width: 960px;
    padding: 1rem;
  }
  header {
    width: 100%;
  }
  #dfa-logo {
    width: 12.5rem;
  }
  #container-hero {
    margin: 2rem 0 0.8rem 0;
  }
  #input-name {
    margin-bottom: 1rem;
  }
  form {
    width: 100%;
  }
  form>p {
    font-size: 1.5rem;
  }
  form>input {
    margin-bottom: 1rem;
  }
  input {
    height: 3rem;
    font-size: 1.25rem;
  }
  .form-error {
    font-size: 1.5rem;
  }
  #game {
    margin-left: auto;
    margin-right: auto;
    max-height: 100vh;
  }
  .col {
    height: 100%;
  }
  .heading {
    font-size: 0.8rem;
    height: 4rem;
  }
  .points {
    height: 4rem;
    font-size: 1.4rem;
  }
  .points:hover {
    font-size: 1.5rem;
  }
  /* previous values: height: 70vh; width 80vw; top: 4rem; left: 50%; transform:translateX(-50%); */
  .question {
    padding: 0.5rem 3rem 0rem 3rem;
  }
  .question>div>h3,h4 {
    font-size: 1.5rem;
    margin: 1rem;
  }
  #return {
    font-size: 1.25rem;
  }
  .container-score>h1 {
    font-size: 2.5rem;
  }
  #submit,#leave {
    font-size: 2.5rem;
  }
  #container-footer {
    width: 960px;
  }
  #container-tmm {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    width: 30%;
  }
}
/*# sourceMappingURL=style.css.map */
