@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Nunito Regular"), local("Nunito-Regular"), url(https://fonts.gstatic.com/s/nunito/v12/XRXV3I6Li01BKofINeaBTMnFcQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+22255, U+FEFF, U+FFFD;
}
#gameTable, #composerTable {
  align-content: space-between;
  background-color: #394d60;
  border: 2px solid #1c2630;
  display: inline-flex;
  flex-wrap: wrap;
  margin: 10px;
  overflow: auto;
}

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #e5ebf0;
  width: 100%;
}

html {
  font-size: 16px;
  font-family: "Nunito", sans-serif;
}

header {
  background-color: #557391;
  box-shadow: 0 5px 5px #394d60;
  height: 40px;
  padding: 20px 5px;
  margin-bottom: 50px;
}

h1, h2, h3, p {
  color: #1c2630;
}

h1 {
  border-bottom: 1px solid #1c2630;
  display: inline-block;
  font-size: 2rem;
  height: 40px;
  margin-left: 10px;
}

h2 {
  font-size: 1.5rem;
  height: 40px;
  text-align: center;
}

img {
  border: 1px solid #1c2630;
  height: 100px;
  margin-top: 5px;
  width: 100px;
}

main {
  margin: 0 auto;
  max-width: 1920px;
  width: 95%;
}

p {
  margin-bottom: 1rem;
}

.cell {
  background-color: #557391;
  flex-basis: 25%;
  height: 165px;
  overflow-y: auto;
  text-align: center;
}
.cell .cellName {
  background-color: #eff2f6;
  color: #272234;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none;
  width: 90%;
}
.cell .cellName:hover {
  text-decoration: underline;
}

.cell:nth-child(8n), .cell:nth-child(8n+1), .cell:nth-child(8n+3), .cell:nth-child(8n+6) {
  background-color: #8fa6bd;
}

#composerSection {
  background-color: #8fa6bd;
  border: 2px solid #1c2630;
  border-radius: 10px;
  float: left;
  margin-bottom: 50px;
  min-height: 559px;
  padding: 10px;
  width: 45%;
}

#aboutSection {
  background-color: #8fa6bd;
  border: 2px solid black;
  border-radius: 10px;
  clear: both;
  margin-bottom: 30px;
  padding: 10px 10px;
}

#aboutText {
  background-color: #eff2f6;
  border-radius: 5px;
  padding: 5px;
  margin: 10px;
}

#gameSection {
  background-color: #8fa6bd;
  border: 2px solid #1c2630;
  border-radius: 10px;
  float: right;
  margin-bottom: 50px;
  min-height: 559px;
  padding: 10px;
  width: 45%;
}

#headerAltText {
  display: none;
}

@media only screen and (min-width: 1680px), (min-device-width: 1680px) {
  html {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1200px), (max-device-width: 1200px) {
  h1 {
    border-bottom: 0px;
    text-align: center;
    width: 95%;
  }

  #composerSection, #gameSection {
    width: 70%;
    margin-left: 12.5%;
    margin-right: 17.5%;
  }

  #gameSection {
    float: left;
  }
}
@media only screen and (min-height: 1200px), (min-device-height: 1200px) {
  header {
    margin-bottom: 75px;
  }

  #composerSection, #gameSection {
    margin-bottom: 75px;
  }
}
@media only screen and (max-width: 900px), (max-device-width: 900px) {
  header {
    height: 80px;
  }

  #headerText {
    display: none;
  }

  #headerAltText {
    display: inline-block;
  }
}
@media only screen and (max-width: 768px), (max-device-width: 768px) {
  .cell {
    flex-basis: 33.33%;
  }

  .cell:nth-child(4n+6), .cell:nth-child(4n+8), .cell:nth-child(8n+1), .cell:nth-child(8n+3) {
    background-color: #557391;
  }

  .cell:nth-child(even) {
    background-color: #8fa6bd;
  }
}
@media only screen and (max-width: 520px), (max-device-width: 520px) {
  h1 {
    font-size: 1.6rem;
  }

  .cell {
    flex-basis: 50%;
  }

  .cell:nth-child(even) {
    background-color: #557391;
  }

  .cell:nth-child(4n+2), .cell:nth-child(4n+3) {
    background-color: #8fa6bd;
  }

  #composerSection, #gameSection {
    width: 80%;
    margin-left: 7.5%;
    margin-right: 12.5%;
  }
}
@media only screen and (max-width: 414px), (max-device-width: 414px) {
  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  img {
    height: 80px;
    width: 80px;
  }
}

/*# sourceMappingURL=index.css.map */
