body {
  font-family: Arial, sans-serif;
  text-align: center;
}

#gameContainer {
  max-width: 1200px;
  min-width: 300px;
  background-color: lightgray;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap-reverse;
  margin: 30px auto;
  padding: 30px;
  column-gap: 30px;
}

#hallOfFame {
  flex-grow: 1;
  max-width: 300px;
  padding: 20px;
  background-color: white;
}
#hallOfFame p {
  margin: 0px;
  padding: 0px;
}
#hallOfFame .scorelinenom {
  font-size: larger;
  font-weight: bolder;
}
#hallOfFame .scorelinedate {
  font-size: smaller;
  color: darkgray;
  margin-bottom: 20px;
}

#game-board {
  display: grid;
  grid-template-columns: repeat(6, 100px);
  grid-template-rows: repeat(4, 100px);
  grid-gap: 5px;
  max-width: 600px;
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  #game-board {
    max-width: 400px;
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
}
.card {
  background-color: darkblue;
  aspect-ratio: 1/1;
}

.card-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visible {
  display: block;
}

.notVisible {
  display: none;
}

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