* {
  margin: 0px;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
}
body {
  background-color: #fab1a0;
  cursor: pointer;
}
.nav-bar {
  margin: 10px;
  display: flex;
  justify-content: space-between;
}
input,
textarea {
  caret-color: transparent; /* Stops the cursor from blinking */
}
.title-box {
  margin: 10px;
  display: flex;
  align-items: center;
  color: white;

  font-size: larger;
}
.title-box h2 {
  align-items: center;
}
.title-box h2:hover {
  color: #ff7675;
}
.buttons {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  margin: 10px;
}
.buttons a {
  background-color: #ff7675;
  justify-content: center;
  text-decoration: none;
  flex-wrap: wrap;
  color: white;
  text-align: center;
  border: 2px solid white;
  width: 100px;
  margin: 10px;
  padding: 10px;
  border-radius: 24px;
}

.buttons a:hover {
  border: 2px solid #ff7675;
  background-color: white;
  color: #ff7675;
}
.game {
  margin-top: 40px;
  display: flex;

  justify-content: center;
  align-items: center;
}
.gameboard {
  display: flex;
  flex-wrap: wrap;
  height: 285px;
  width: 285px;
}
.square {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: #ff7675;
  border-radius: 8px;
  margin: 5px;
  box-shadow: 2px 2px 2px 1px rgb(0 0 0 / 20%);
}

.square object {
  width: 70px;
  height: 70px;
}

.Xpiece,
.Opiece {
  pointer-events: none;
}
