html,
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #000;
  display: flex;
  width: 100%;
  height: 100vh;
  cursor: none;
}

.rotation-container {
  width: 100%;
  will-change: transform;
}

.shake-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.container {
  margin: auto;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.canvas {
  background: #000;
  flex-basis: 50%;
}

.canvas2 {
  transform: scaleX(-1);
  flex-basis: 50%;
}

.canvas3 {
  transform: scaleY(-1);
  flex-basis: 50%;
}

.canvas4 {
  transform: scale(-1, -1);
  flex-basis: 50%;
}

.container-row {
  display: flex;
}

.logo {
  position: absolute;
  top: 1%;
  left: 1%;
  width: 33%;
}