body {
  font-family: sans-serif;
  text-align: center;
  background: #f0f0f5;
  margin: 0;
  padding: 2rem;
}

h1 {
  color: #333;
}

#game-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.card-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card {
  background-color: #fff;
  padding: 1rem;
  border-radius: 8px;
  border: 2px solid #ccc;
  cursor: move;
  min-width: 200px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
  position: relative;
  touch-action: manipulation; 

}


.card.drag-over {
  border-color: green;
}

.card.correct {
  background-color: #c8f7c5;
}

.card.incorrect {
  background-color: #f7c5c5;
}


.karte img {
  display: block;
  margin-bottom: 5px;
  border-radius: 6px;
  max-height: 80px;
}


.card img.card-image {
  max-width: 100%;
  max-height: 80px;
  display: block;
  margin-bottom: 5px;
  border-radius: 6px;
}
