@font-face {
  font-family: 'AlHurra';
  src: url(font/AlHurraFontRegular.ttf);
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
    line-height: 1.5em;
    text-align: center;
  }
  
  /* This container is needed to position the front and back side */
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 300px;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  /* Do an horizontal flip when you move the mouse over the flip box container */
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
    
  }
  
  /* Position the front and back side */
  .flip-card-front, .flip-card-back {
    font-family: 'AlHurra';
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; 
    backface-visibility: hidden;
  }
  
  /* Style the front side (fallback if image is missing) */
  .flip-card-front {
    background-color: #491424;
    color: #F6E8E0;
    padding-top: 5%;
    padding-left: 20%;
    padding-right: 20%;
    padding-bottom: 20%;
    box-shadow: 1px 1px 10px #000000;
  }
  
  /* Style the back side */
  .flip-card-back {
    background-color: #491424;
    color: #F6E8E0;
    transform: rotateY(180deg);
    padding-top: 15%;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 5%;
    font-size: 18px;
  }
  .box {
    width: 250%;
    height: auto;
  }
  .box-img {
    width: 90%;
    height: 100%;
    
  }


  