/* all styles */
body {
  margin: 0;
  font-size: 1.2rem;
}

/* form */
#autoscale-moderation {
  display: flex;
  justify-content: center;
  align-items: center;
}

#autoscale-moderation-form {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  height: 100vh;
  min-width: 85%;
  max-width: 95%;
}

#autoscale-moderation-form-controls {
  display: flex;
  flex-direction: row;
  align-items: baseline;
}

progress {
  width: 70px;
}

textarea {
  width: 98%;
  height: 180px;
}

button {
  color: white;
  background-color: black;
  font-size: 1.2rem;
  border: 0;
  padding: 1rem 1.5rem;
  margin: 1.2rem 0.6rem 1.2rem 0rem;
}

button:hover {
  color: grey;
}

.result {
  color: white;
  font-size: 1.2rem;
  border: 0;
  padding: 1rem 1.5rem;
  margin: 1.2rem 0.6rem 1.2rem 0rem;
}

#safe {
  background-color: green;
}

#danger {
  background-color: red;
}

label {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

/* large desktop */
@media(min-width: 850px) {
  #autoscale-moderation {
    margin: 0 auto;
    width: 600px;
  }

  #autoscale-moderation-form {}

  textarea {
    width: 540px;
    height: 180px;
  }
}

/* tablet */
@media (max-width: 768px) {}

/* phone */
@media (max-width: 576px) {}
