.flip-card {
  background-color: transparent;
  width: 220px;
  height: 80px;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 1s;
  -o-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 {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 5px;
  -webkit-backface-visibility: hidden;
  -o-backface-visibility: hidden;
}

.flip-card-front #p, .flip-card-back #p {
  margin: 0;
  font-size: 28px;
  font-weight: bolder;
  color: black;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #FF9702;
}

/* Style the back side */
.flip-card-back {
  background-color: #FF9702;
  transform: rotateY(180deg);
}
