/* styles.css */
  
body {
  background: #fff0db;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 80vh;
}

.board {
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  grid-template-rows: repeat(18, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 360px;
  border: 0.5px solid black; /* Add this line for board lines */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.board div {
  width: 20px;
  height: 20px;
  border: 0.5px solid black; /* Add this line for cell borders */
  background: rgb(255, 180, 76);
}

.board2 {
  display: grid;
  grid-template-columns: repeat(19, 1fr);
  grid-template-rows: repeat(19, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  width: 380px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.board2 div {
  width: 20px;
  height: 20px;
  border: 0.5px solid transparent;
  background: rgb(255, 180, 76, 0.2);
}

.board2 div.b {
  background: black;
  border-radius: 50%;
}

.board2 div.w {
  background: white;
  border-radius: 50%;
}

footer {
  background-color: #f8f8f8; /* Set your desired background color */
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

footer button {
  margin: 20px 0 10px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

footer p {
  margin: 10px 0 20px 0;
}

footer a {
  color: #007bff; /* Change the color to your preference */
  text-decoration: underline;
}
