/*
# blues
#00b8ff
#009bd6
#00719c
#00415a
#001f2b
*/

.title-container {
  background-color: white;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: auto;
  flex-wrap: wrap;
}

.title-bottom-border {
  border: 1px solid #001f2b;
  box-shadow: 0 0 1px 0px #00b8ff;
}

.menu-container {
  background-color: white;

  flex: 1 1 auto;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;

  width: auto;
}

.author {
  color: black;
  display: flex;
  flex: 0 1 auto;
  align-self: auto;
  padding: 4px 20px;
  font-weight: bold;
  text-shadow: black;
  font-family: Georgia, serif;
  align-items: center;
  font-size: 1.2em;
}

@media (min-width: 700px){
  .author {
    flex-direction: column;
    width: 20rem;
  }
}
@media (max-width: 700px){
  .author {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }
}

.menu-rhs {
  justify-content: flex-end;
  padding: 0px 20px;
  width: 20rem;
}

.author-text {
  text-shadow: -1px -1px lightskyblue;
  padding: 0px 0.2rem;
}

.sub-menu {
  color: white;
  display: flex;
  flex-direction: row;
  width: auto;
  margin-left: 2vw;
  margin-right: 2vw;
  flex: 0 1 auto;
  align-items: center;
}

.menu-button, .sub-menu-button, .menu-active {
  color: black;
  font-size: 1.5em;
  line-height: 1em;
  padding: 2px 2px;
}

.menu-button, .menu-active {
  margin-left: calc(0.5em);
  margin-right: calc(0.5em);
}

@media (max-width: 700px){
  .menu-button, .menu-active {
    margin-left: calc(0.2em);
  }
}

.menu-active {
  color: black;
  font-weight: bold;
}

.menu-button:hover, .sub-menu-button:hover {
  color: #00719c;
  text-decoration: underline;
}

.bingo-menu {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: auto;
  margin-left: calc(0.5em);
  margin-right: calc(0.5em);
}

.bingo-sub-menu {
  margin-top: 2em;
  position: absolute;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: auto;
  border: 1px solid black;
  overflow: visible;
}

