
.background{
  background-image: url('../images/background.png');
  height: 100vh;
  width: 100vw;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
}

.scene {
  width: 18vh;
  height: 25vh;
}

.card {
  /* width: 100%;
  height: 100%; */
  width: 24vh;
  height: 36.65vh;
  transition: transform 1s;
  transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
  background-color: transparent !important;
  border: 0 !important;
}

.card.is-flipped {
  transform: rotateY(180deg);
  background-color: transparent !important;
  border: 0 !important;
}

.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 260px;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: transparent !important;
  border: 0 !important;
}

.card-face-front {
  /* background: red; */
  background-color: transparent !important;
  border: 0 !important;
}

.card-face-back {
  transform: rotateY(180deg);
  background-color: transparent !important;
  border: 0 !important;
}
