@charset "utf-8";
/* CSS Document */

.flip-box {
  background-color: transparent;
  width: 320px;
  height: 150px;
  border: 5px solid #257ba0;
  perspective: 1000px;
  
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
	
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front {
  background-color: #fff;
  color: black;
}

.flip-box-back {
  background-color: #fff;
  color: white;
  transform: rotateY(180deg);
}
