body {
  text-align: center;
  background: linear-gradient(90deg, #4c028e, #009dff 50%, #00ffd0);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  height: 100vh;
}

h1 {
  margin-top: 150px;
}

.generator {
  display: inline-block;
  padding: 20px 30px;
  margin-top: 0;
  border: none;
  background-color: rgba(255, 255, 255, 0.471);
  border-radius: 8px;
}

.copied {
  font-weight: 700;
  color: rgb(1, 172, 1);
}

button {
  display: block;
  width: 150px;
  margin: 0 auto;
  text-align: center;
  padding: 10px 15px;
  border: 1px solid rgb(186, 186, 186);
  background-color: rgb(255, 255, 255);
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: rgb(193, 193, 193);
}

button:active {
  background-color: rgb(166, 166, 166);
}

.container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

label {
  font-weight: 700;
  margin-bottom: 10px;
}

.input-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
}

.range-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input[type='number'],
input#range {
  margin-top: 30px;
  width: 70px;
}

input[type='number'] {
  text-align: center;
}
