* {
  box-sizing: border-box;
}

:root {
  font-family: Roboto, sans-serif;
  background-color: rgb(26, 27, 37);
  color: white; /* oder eine andere kontrastreiche Farbe */
}

body {
  font-family: Roboto, sans-serif;
  background-color: rgb(26, 27, 37);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

fieldset {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  /* height: 40rem; */
  max-width: 80%;
  width: 90%;
  background-color: #2c2f38;
  text-align: center;
  margin: auto;
  margin-top: 5rem;
  color: #ffd700;
  border-radius: 2rem;

  @media screen and (min-width: 1000px) {
    max-width: 40%;
  }

  label {
    font-size: 20px;
    padding: 1rem;
  }

  input,
  textarea {
    margin: 1rem;
    width: 100%;
    max-width: 20rem;
    border-radius: 2rem;
    padding: 1rem;
    resize: vertical;
  }
}

#button,
#back {
  width: 12rem;
  border: none;
  border-radius: 2rem;
  border: 1px solid #ffd700;
  background-color: black;
  color: white;
  padding: 1rem;
  margin: 1rem auto;
  display: block;
  

 
}

#button:hover {
  background-color: #333;
  transform: scale(1.05);
}


#back:hover {
  background-color: #333;
  transform: scale(1.05);
}