body{ 
  background: rgb(182,116,21);
background: linear-gradient(0deg, rgba(182,116,21,1) 0%, rgba(255,159,0,1) 50%, rgba(252,176,69,1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: sans-serif;
}

select {
  padding: 0.5rem;
}
select option{
  line-height: 2rem;
}

textarea{
  padding: 1rem;
  min-height: 30vh;
  flex-grow:1;
}
fieldset{
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  
  flex-grow: 1;
}
.container{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sliders{
  display: flex;
  flex-wrap: wrap;
  font-weight: bold;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 1rem;;
}

.sliders input{
  
  flex-grow: 1;
}
 
 
.buttons{
  display: flex;
  justify-content: center;
}

button{
  padding: 1rem 2rem;
  border: 0px;
  background: black;
  color: orange;
  border-radius: 1rem;
  cursor: pointer;
}
button:hover{
  background: rgba(0,0,0,0.5);
  color: white;
}

h1  {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

footer, footer a{
  margin-top: 3rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(0,0,0,0.5)
}

input[type='range']{ accent-color: rgba(0,0,0,0.5); }

.textInput{
  background: rgba(0,0,0,0.2);
  padding: 1rem;
  border-radius: 1rem;
  display: flex;

}