body {
  background-color: #111222;
  object-fit: contain;
  margin: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  transition: transform .32s cubic-bezier(0.16, 1, 0.3, 1);
}
.content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
  justify-content: center;
}
.hands {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.hand {
  position: absolute;
  transform: translate(-50%, -50%);
  transform-origin: center;
}