@import url("./positions.css");

body {
  background-color: gray;
  /* width: 100vw; */
  display: flex;
  gap: 50px;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
.piezas {
  border: 1px solid black;
  width: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  justify-content: center;
  align-items: center;
  align-self: center;
  min-width: 757px;
  min-height: 1103px;
  padding: 20px;
  border-radius: 10px;
}
.tablero {
  width: calc(129px * 6);
  height: calc(129px * 4);
  border: 10px solid white;
  position: relative;
  border-radius: 10px;
}
.tablero__cell {
  border: 1px solid #f5f5f5;
  width: 129px;
  height: 129px;
}
.fondoHidden {
  position: absolute;
  width: 100%;
  transition: opacity 2s ease-out;
  -webkit-user-drag: none;
}
