body {
  background-image: var(--gradient-background);
}

.container {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.board {
  display: grid;
  grid-template-columns: 5rem 5rem 5rem;
  grid-template-rows: 5rem 5rem 5rem;
  margin: 3rem;
}

h1 {
  margin-bottom: 3rem;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.75);
  text-align: center;
  line-height: 0.5;
}

h5 {
  margin-bottom: 1rem;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.75);
  text-align: center;
  line-height: 0.5;
}

button:disabled {
  color: var(--color-background);
  background-color: var(--color-links);
  font-weight: bold;
}

@media screen and (min-width: 640px) {
  .board {
    grid-template-columns: 7rem 7rem 7rem;
    grid-template-rows: 7rem 7rem 7rem;
  }
}

@media screen and (min-width: 1024px) {
  .board {
    grid-template-columns: 10rem 10rem 10rem;
    grid-template-rows: 10rem 10rem 10rem;
  }
}
