body {
  font-family: "Fira Sans", sans-serif;
  margin: 0;
  padding: 40px 20px;
  background-image: url("/fileadmin/GI/Projekte/Magazin/Ausgabe_10/hintergrund-gross.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 10px;
}

.background-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background-image: url("/fileadmin/GI/Projekte/Magazin/Ausgabe_10/hintergrund.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.stamm {
  position: absolute;
  width: 17%;
  height: auto;
}

.dropzone {
  position: absolute;
  width: 18%;
  aspect-ratio: 3 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px dashed transparent;
}

.word {
  height: 70px;
  width: auto;
  cursor: grab;
  margin: 10px;
  user-select: none;
  cursor: grab;
  -webkit-user-drag: element;
}

#word-pool {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

#feedback-message {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  font-weight: bold;
  z-index: 10;
  text-align: center;
}

#feedback-message.success {
  color: green;
}

#feedback-message.error {
  color: red;
}

@media (max-width: 600px) {
  .word {
    height: 60px;
  }

  .dropzone {
    width: 20%;
  }

  .stamm {
    width: 20%;
  }

  #feedback-message {
    font-size: 1rem;
  }
}

