body {
  background: white;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: Arial, sans-serif;
}

section {
  background: white;
  color: white;
  border-radius: 1em;
  padding: 1em;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.centering_parent {
  display: flex;
  justify-content: center;
  align-items: center;
}

#board {
  width: 100%;
  max-width: 400px; /* Adjust to desired max width */
}

@media screen and (min-width: 768px) {
  #board {
    max-width: 800px; /* Adjust to desired max width for larger screens */
  }
}

