/* Primary: #4ABDAC*/
/* Secondary: #FC4A14 */
/* Action: #F78733 */
/* Muted: #DFDCE3 */
/* Dark Muted: #313131 */

html {
  font-size: 28px;
  color: white;
  font-family: "Times New Roman", Times, serif;
}

@media (min-width: 800px) {
  html {
    font-size: 26px;
  }
}

@media (min-width: 1000px) {
  html {
    font-size: 24px;
  }
}

body {
  margin: 0;
  z-index: 1;
}

.overlay-color {
  position: fixed;
  z-index: -1;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #4ABDAC;
}


.header {
  margin: 1rem;
}

.header tngg-card small {
  display: block;
  font-size: 1rem;
}

a {
  color: #fff;
}

#firebaseui-auth-container {
  height: 0;
  width: 0;
  transition: height 225ms ease-in-out, width 225ms ease-in-out;
}

#firebaseui-auth-container.show {
  height: auto;
  width: auto;
}

@supports (display: grid) {
  @media (min-width: 800px) and (max-width: 1000px) {
    .header {
      display: grid;
      grid-gap: 1rem;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      grid-template-rows: 1fr;
    }

    .header tngg-card {
      grid-column: 1 / 4;
    }
  }

  @media (min-width: 1000px) {
    .header {
      max-width: 950px;
      margin: 1rem auto;
    }
  }

  @media (min-width: 800px) and (max-width: 1000px) {
    tngg-account {
      position: inherit;
      grid-column: 4 / 5;
      grid-row: 1;
      margin: auto;
    }
  }
}
