body {
  font-family: sans-serif;
  font-size: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: black;
  color: white;
}

body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50%;
z-index: -1;
  background: linear-gradient(to bottom, #333333, #000000); /* Linear gradient for the top half of the page */
}

h1 {
  font-size: 32;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

textarea {
  width: 400px;
  height: 100px;
  margin-bottom: 20px;
  padding: 10px;
  font-size: 1.2rem;
}

button {
  display: block;
  margin: 20px auto;
  padding: 10px;
  font-size: 1.2rem;
}

.form-row textarea {
  width: 760px;
  height: 150px;
  margin-top: 20px;
  padding: 10px;
  font-size: 1.2rem;
}

#output {
  width: 760px;
  height: 300px;
  margin-top: 20px;
  padding: 10px;
  font-size: 1.2rem;
}

button#randomizeButton {
  font-weight: bold;
  background-color: #F85D31;
  color: white;
  border-radius: 32px;
}
