.grid {
  position: absolute;
  width: 560px;
  height: 300px;
  border: solid black 1px;
  margin-top: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%);
}

.block {
  position: absolute;
  width: 100px;
  height: 20px;
  background-color: purple;
}

.user {
  position: absolute;
  width: 100px;
  height: 20px;
  background-color: green;
}

.ball {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  border-style: solid;
  border-width: thin;
  background-color: aquamarine;
}

.container {
  position: relative;
  margin: auto;
  text-align: center;
}

.buttons {
  text-align: center;
  margin: auto;
  position: relative;
  margin-top: 330px;
}

#resetButton {
  background-color: red;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
