body {
  margin: 0;
}

table {
  width: 100%;
  height: 100%;
  position: absolute;
  mix-blend-mode: multiply;

  /* animation: shake 0.3s infinite; */
  /* animation-direction: alternate; */
}

@keyframes shake {
  0% {
    transform: rotate(0.1deg);
  }
  100% {
    transform: rotate(-0.1deg);
  }
}

table td {
  box-shadow: 1px 1px 0 blue;
}

.fly {
  display: none;
}
