html,
body {
  height: 100%;
  width: 100%;
  margin: 0px;
  padding: 0px;
  font-family: Arial, sans-serif;
}
.btn {
  background-color: white;
  border: 0px;
  cursor: pointer;
}
.btn:hover {
  opacity: 0.5;
}
.sameLine {
  display: inline-block;
}
.login {
  font-size: 20px;
  display: flex;
  flex-direction: column;
  place-items: center;
  text-align: center;
}
.example {
  margin: 50px;
}
.input {
  outline: none;
  border: 0;
  border-bottom: 2px solid grey;
  color: grey;
  font-size: 20px;
  width: 200px;
  margin: 30px;
}
.buttons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.highscores {
  margin: 5px;
  font-size: 20px;
  border: 2px solid black;
  cursor: pointer;
  color: black;
  background-color: #ffffff;
}
.highscores:hover {
  color: #ffffff;
  background-color: black;
}
.about {
  margin-left: 10px;
}
.game {
  width: 920px;
  font-size: 20px;
  display: none;
  margin: auto;
  grid-template-areas: "left middle right";
}
.leftcolumn {
  width: 160px;
  margin: 20px;
  flex-shrink: 0;
  grid-area: left;
}
.hint {
  width: 100px;
  height: 30px;
  font-size: 20px;
  border: 2px solid black;
  cursor: pointer;
  color: black;
  background-color: #ffffff;
}
.hint:hover {
  color: #ffffff;
  background-color: black;
}
.hint:disabled {
  background-color: gray;
}
.middlecolumn {
  width: 600px;
  grid-area: middle;
}
.canvas {
  border: 0px;
  margin-top: 20px;
}
.rightcolumn {
  width: 160px;
  margin: 20px;
  flex-shrink: 0;
  grid-area: right;
}
.unmute {
  display: none;
}
.canvas2 {
  display: none;
}
.info {
  display: none;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.infoContainer {
  background-color: #ffffff;
  margin: auto;
  width: 50%;
  max-height: 70%;
  margin-top: 5%;
  text-align: justify;
  border-style: solid;
  display: flex;
  flex-direction: column;
}
.highscorebutton {
  margin-top: 2px;
  margin-left: 2px;
  width: 20%;
  font-size: 20px;
  border: 2px solid black;
  cursor: pointer;
  color: black;
  background-color: #ffffff;
}
.highscorebutton:hover {
  color: #ffffff;
  background-color: black;
}
.close {
  float: right;
  margin: 5px;
  margin-right: 20px;
  position: right;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
}
.infoText {
  font-size: large;
  overflow: auto;
  padding: 5px;
}
@media (max-width: 741px) {
  .example {
    width: 100%;
  }
}
@media (hover: none) {
  .game {
    width: 100%;
    font-size: 18px;
    align-items: center;
    justify-items: center;
    grid-template-areas:
      "middle middle"
      "arrow right"
      "left right";
  }
  .canvas2 {
    width: 200px;
    display: block;
    grid-area: "arrow";
  }
  .middlecolumn {
    width: 100%;
  }
  .rightcolumn {
    margin-top: 5px;
    height: 370px;
    overflow: auto;
  }
  .leftcolumn {
    margin-top: 0px;
    margin-bottom: 0px;
  }
  .infoContainer {
    width: 80%;
  }
}
