body {
  font-family: "Arial", sans-serif;
  font-size: 20px;
  background: #525151;
  margin: 0;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}
.slider {
  width: 200px;
  margin: 20px;
}

.status {
  font-family: Arial;
  margin: 10px;
}

#textarea {
  min-width: 300px;
  min-height: 400px;
  margin: 10px;
  font-size: 1.5rem;
}

.buttonRun #run {
  margin: 10px;
  padding: 10px;
  font-size: 1.5rem;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100px;
  height: 50px;
  transition: ease-in-out 0.1s;
}

.buttonRun #run:hover {
  background-color: #2e5230;
}

.buttonReset #reset {
  margin: 10px;
  padding: 10px;
  font-size: 1.5rem;
  background-color: #f44336;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100px;
  height: 50px;
}

.buttonReset #reset:hover {
  background-color: #7a1f1f;
}

.buttons {
  display: flex;
  flex-direction: row;
}

#loop {
  width: 30px;
  height: 30px;
}

#loop-num {
  width: 50px;
  height: 30px;
}

.loop-contr {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.sliders {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
