body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(120deg, rgb(255, 7, 210), rgb(175, 6, 227));
}
* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  box-sizing: border-box;
}
.container {
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.3)
  );
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 70%;
  width: 30rem;
}
.title {
  display: flex;
  justify-content: center;
  color: rgb(223, 186, 223);
  text-shadow: 1px 1px 3px black, 1px 2px 3px black;
  font-weight: 700;
  font-size: 2rem;
}
.question-input {
  margin: 1rem 0;
}
.answers {
  display: flex;
  justify-content: center;
}
.answers li {
  list-style-type: none;
  padding: 0.2rem 2rem;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.1)
  );
  border: 1px solid rgba(223, 186, 223, 0.316);
  margin: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-family: cursive;
  transform: translateY(20px);
  font-weight: 300;
  transition: transform 0.2s ease-in-out;
  transform-style: preserve-3d;
}
.answers li:hover {
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.3)
  );
  border: 1px solid rgba(223, 186, 223, 0.227);
  transform: scaleY(1.09) scaleX(1.09) translateY(19px);
}
.answers li:checked {
  background-color: black;
}
.submit {
  width: 15rem;
  height: 2rem;
  font-size: 1.5rem;
  background: linear-gradient(
    120deg,
    rgba(255, 7, 210, 0.152),
    rgba(175, 6, 227, 0.193)
  );
  border-radius: 20px;
  border: none;
  transform: translateY(100px);
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
.submit:hover {
  background: linear-gradient(
    120deg,
    rgba(255, 7, 210, 0.316),
    rgba(175, 6, 227, 0.398)
  );
  transform: scaleY(1.09) scaleX(1.09) translateY(94px);
}
.neu {
  width: 170px;
  height: 40px;
  border-radius: 10px;
  box-shadow: -3px -3px 4px rgb(248, 189, 237), 3px 3px 4px black;
}
.submit:focus {
  outline: none;
}
.list.color {
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.3)
  );
}
/* background: linear-gradient(120deg,rgba(255, 7, 210, 0.241),rgba(175, 6, 227, 0.316)); */
@media screen and (max-width: 400px) {
  .container {
    width: 100%;
    padding: 0px;
  }
}
