body {
  background: #B3DEE2 url('./img/watercolor.png');
  font-family: Arial, Helvetica, sans-serif;
}

#players-block {
  display: flex;
  justify-content: center;
}

figure {
  text-align: center;
}

figcaption {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}

#players-block figure img {
  max-width: 50px;
}

#game-grid {
  background-color: #E27396;
  display: grid;
  grid-template-rows: repeat(6,1fr);
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 0.5rem;
  height:60vh;
  width: 60vw;
  margin: 0 auto;
  border-radius: 10px;
  padding: 5px;

}
@media (max-width: 600px){
  #game-grid {
    width: 80vw;
    height: auto;
  }
}

.block {
  background: #EFCFE3;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

header h1 {
  text-align: center;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color: purple;
}

.player {
  background: pink;
  margin: 10px 10px;
  text-align: center;
  padding: 0px 0px 10px 0px;
  border-radius: 50%;
}

footer {
  text-align: center;
  margin-top: 20px;
}

.block{
  position: relative;
}

.block img {
  width: auto;
  max-width: 50px;
}

.overlay {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  /*transition: .5s ease;*/
  background-color: blue;
  background-image: url("./img/qmark.png");
  background-repeat:no-repeat;
  background-position: center;
  border-radius: 5px;
}

#commentary {
  width: 50vw;
  min-width: 300px;
  background: pink;
  text-align: center;
  margin: 0px auto 20px auto;
  min-height: 80px;
  padding-top: 10px;
  border-radius: 5px
}