.circle{

    position: relative; /* Container als Bezugspunkt */
    width: 100%;

}
#pin{
width: auto;
    position: absolute;
    top: 0;
    left:50%;
   transform: translateX(-50%);
        z-index: 20;
    
}

.circle img{

position: absolute;

}

#rotator {
  
width: auto;
    position: absolute;
    top: 0;
    left:50%;
   transform: translateX(-50%);
        z-index: 19;
animation: rotate 4s ease 1 forwards; /* Dauer wird später überschrieben */



       
    
}


@keyframes rotate {
 from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }

}
select {
  position: relative;  /* Macht es möglich, den Z-Index anzuwenden */
  z-index: 1000;       /* Höher als andere Elemente */
  height: 20px;
  width: auto;
  font-size: 10px;
  left: 50%;
transform: translate(-50%, -50%);
margin-top: 400px;
}
button {
  position: relative;  /* Macht es möglich, den Z-Index anzuwenden */
  z-index: 1001;       /* Höher als andere Elemente */
  left: 50%;
transform: translate(-50%, -50%);
margin-top: 10px;


}
.container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Ermöglicht das Umklappen der Elemente */
}

.input-group {
    display: flex;
    align-items: center;
    margin: 5px; /* Hinzufügen von Abstand, falls notwendig */
}

input[type="text"] {
    padding: 8px;
    margin-right: 10px;
    font-size: 16px;
    height: 15px;
    width: 100%; /* Damit das Eingabefeld die Breite des Containers ausfüllt */
    max-width: 200px; /* Optional: Maximalbreite des Eingabefelds festlegen */
    box-sizing: border-box; /* Damit das Padding zur Gesamtbreite hinzugerechnet wird */
    z-index: 10022;
}

.color-box {
    width: 20px;
    height: 20px;
    background-color: #3498db;
    border: 1px solid #2980b9;
}
body{
  max-width: 100%;
}