* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f5f5f5;
}

.flashcard-container {
  display: flex;
  overflow: hidden;
  width: 300px;
  height: 200px;
  border: 2px solid #ccc;
  border-radius: 10px;
}

.flashcard {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.flashcard p {
  font-size: 18px;
  text-align: center;
}
