/*
.carousel-section {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 500px;
    }

    #flashcard-container {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
    }

.flashcard {
    width: 250px;
    min-height: 450px;
    background-color: #f0f0f0;
    border: 6px solid #ccc;
    padding: 20px;
    box-sizing: border-box;
    transition: left 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.flashcard img {
    max-width: 100px;
    max-height: 100px;
    margin-bottom: 10px;
}
.flashcard h3 {
    color: #3C5B6F;
} */

.carousel-section {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 100vh;
  padding: 20px;
}
#flashcard-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100%;
}
.flashcard {
  width: 350px;
  height: 450px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  scroll-snap-align: center;
  margin-right: 20px;
}
.flashcard img {
  max-width: 200px;
  max-height: 200px;
  margin-bottom: 10px;
}
.flashcard h3 {
    color: #3C5B6F;
} 

 