#arcana {
  display: flex;
  flex-direction: row-reverse;
  /* This should be the negative of the margin-right, below. */
  padding-right: calc(32px + 5px);
  top: calc(570px - 5px);
  height: initial;
  pointer-events: none;
  opacity: 0.7;
}

#arcana .arcanum {
  border: 2px solid #ccc;
  border-radius: 5px;
  background-color: white;
  margin-right: -30px;
  position: relative; /* Allow stacking of child elements on top */

  transform: rotate3d(0, 1, 0.5, -25deg);
}

#arcana .arcanum .card-bullet {
  position: absolute;
  top: 0;
  left: 0;
}

.arcanum-front {
  height: 68px;
  width: 48px;
  background: url(../images/card-front.png);
}

.arcanum-back {
  height: 68px;
  width: 48px;
  background: url(../images/card-back.png);
}
