body {
  background-color: #dddddd;
  font-family: Helvetica;
}

#games {
  display: flex;
  justify-content: center;
}

#description {
  display: flex;
  justify-content: center;
  background-color: tan;
  border: 2px solid #937753;
  margin-bottom: 20px;
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  background-color: #3c00ff;
  border: 4px solid #0000b5;
  width: 75%;
}

.grid-container > button {
  background-color: goldenrod;
  padding: 20px 0;
  display: flex;
  margin: 10px;
  align-items: center;
  justify-content: center;
  border: 4px solid #a07814;
}

.grid-container > button:hover {
  background-color: #b48818;
  cursor: pointer;
}

nav {
  text-align: center;
}