 .flashcard-container {
    perspective: 1000px;
    background-color: wheat;
	
  }

  .flashcard {
    width: 100%;
    height: 150px;
    position: relative;
    transform-style: preserve-3d;
    cursor: pointer;
  }

  .front,
  .back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background-color: #f0f0f0;
    transition: transform 1s;
  }

  .back {
    transform: rotateY(180deg);
  }

  /* Apply the flip animation */
  .flipped .flashcard {
    transform: rotateY(180deg);
  }

  .flipped .back {
    transform: rotateY(0deg);
  }

  .flipped .front {
    transform: rotateY(-180deg);
  }