.flip-card {
  background-color: transparent;
  width: 280px;
  height: 500px;
  perspective: 1000px;
  display: inline-block;
    padding: 10px;
}

.flip-card-inner {
    background-color: transparent;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: transparent;
  color: black;
}

.flip-card-back {
  background-color: transparent;
  color: white;
  transform: rotateY(180deg);
  
}

      body {
  background-image: url('images/6764646_3439481.jpg');
  background-repeat: no-repeat;
  
  background-position: center;
}