#btnDiv {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  margin-top: 10px;
}

button {
  box-sizing: border-box;
  width: 200px;
  height: 50px;
  border-radius: 8px;
  border: solid 2px rgb(213, 152, 254);
  background-color: rgb(162, 173, 244);
  font-family:Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 500;
  font-size: larger;
  justify-content: center;
  align-content: center;
  margin-left: 80px;
  margin-right: 80px;
}

button:hover {
    background-color: rgb(114, 114, 252);
}

button:active {
    background-color: rgb(162, 173, 244);
}

#container {
  box-sizing: border-box;
  width: 960px;
  height: 960px;
  background-color: lightgrey;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.grid {
  background-color: rgb(218, 218, 218);
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  box-sizing: border-box;
  /* border: solid black 1px; */
}