body {
  font-family: sans-serif;
  padding: 2rem;
  text-align: center;
  background-color: #101010;
  color: white;
}
ul {
  list-style: none;
  padding: 0;
}
li {
  cursor: pointer;
  margin: 0.5rem 0;
}
li:hover {
  /* text-decoration: underline; */
  color: lightseagreen;
}
p {
  font-size: 20pt;
  color: rgb(155, 141, 236) /*rgb(71, 0, 122)*/
}

.stars button {
  font-size: 2rem;
  /* color: gray; */
  background: none;
  border: solid 1px;
  border-color: white;
  border-radius: 1rem;
  cursor: pointer;
  color:  rgb(155, 141, 236); /*rgb(71, 0, 122); */
  padding: 6px;
}

.stars button:hover {
  color: lightseagreen;   /* Hover-Effekt */
}

input {
  width: 200px;
  /* padding: 8px; */
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
input::placeholder {
  color: #aaa; /* hellgrau */
}


.slider-container {
  width: 300px;
  margin: 20px 0;
}
.slider-label {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}
.slider {
  width: 100%;
}
.slider-texts {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}



#restartBtn {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  color: white;
  background-color: blueviolet;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;     /* vertikal zentrieren */
  justify-content: center; /* horizontal zentrieren */
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background-color 0.2s;
  font-size: 20pt;
  line-height: 1;          /* <--- hier */
  padding: 0;              /* <--- optional, damit kein extra Platz */
  text-align: center;      /* horizontalzentrierung für Textfallback */
}

#restartBtn:hover {
  background-color: lightseagreen;   /* Hover-Effekt */
}

#arrow{
  position: relative;
  top: -3px;
}