body {
  margin: 0;
  padding: 0;
  background-image: url(../assets/tropical2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 10pt;
  font-family: Arial, sans-serif;
}
.hidden {
  visibility: hidden;
}

.game-options,
.game,
.copyright {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

.logo {
  margin: 30px auto 0px auto;
  font-size: 70pt;
  font-weight: bold;
  color: #fc8c14;
}

.game-options-container {
  z-index: 200;
  position: relative;
  height: 400px;
  width: 500px;
  top: 25%;
  margin: 0 auto;
  background-color: #0f8b8d;
  border: 5px solid #143642;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: center;
}
.select-category-label {
  color: #143642;
}
.select-category-label,
.game span {
  width: 60%;
  margin: 30px auto 10px auto;
  font-size: 16pt;
}
.game-options-container select {
  width: 60%;
  font-size: 12pt;
}
#start-button {
  background-color: #143642;
  border: none;
  color: white;
  width: 130px;
  height: 50px;
  font-size: 12pt;
  margin: 30px auto;
}

.game-container {
  z-index: 300;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  height: 400px;
  width: 500px;
  top: 25%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 5px solid #143642;
  box-sizing: border-box;
  color: #143642;
}
.guess-title {
  margin: 20px auto;
  width: 60%;
  height: 37px;
  font-size: 16pt;
}
.game-title {
  width: 60%;
  font-size: 26pt;
  font-weight: bold;
  color: #e22b22;
}
#streak-title {
  font-size: 12pt;
  color: #e22b22;
}
.current-word {
  margin: 10% auto;
  font-size: 24pt;
  width: 60%;
  color: #0f8b8d;
}
.current-word .solution {
  font-size: 24pt;
  color: #e22b22;
}
.wrong-guesses {
  margin: 5px auto;
  width: 60%;
}
.wrong-guesses-title {
  font-size: 16pt;
}
.wrong-guesses-letters {
  font-size: 20pt;
  color: #e22b22;
  height: 50px;
}
#reset-button {
  background-color: #143642;
  border: none;
  color: white;
  width: 130px;
  height: 50px;
  font-size: 12pt;
  margin: 20px auto;
}

.copyright {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 auto;
  text-align: center;
  color: white;
}
.copyright div {
  width: 500px;
  padding: 6px;
  margin: 20px auto 20px auto;
}

.canvas-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.canvas {
  position: relative;
  margin: 0 auto;
  width: 1000px;
  height: 200px;
  z-index: -1;
}
.music {
  display: none;
}
.music-control {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  font-size: 16pt;
  background-color: rgba(0, 0, 0, 0%);
  border: none;
}
