* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  gap: 20px;
}

#container {
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1px;
  flex: 2;
}

.gridSquare {
  color: blue;
  border: 1px solid black;
  width: 6%;
  height: 10%;
}

#newGridButton {
  height: 100px;
  flex: 1;
}

