@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

* {
  font-family: "Arial", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  text-align: center;

  color: #fff;
  background: rgb(6, 147, 232);
  background: linear-gradient(
    90deg,
    rgba(6, 147, 232, 1) 38%,
    rgba(0, 112, 255, 1) 79%
  );
}

input {
  border: 2px solid #000;
  border-color: #fff;
  transition: 1s;
}

input:hover {
  border-color: rgb(40, 42, 43);
}

#app h1 {
  font-size: 48px;
  transition: 1s;
  cursor: default;
}

#dpsSettings {
  background: rgb(65, 111, 156);
}

input {
  font-size: 1.5em;
  margin-top:10px;
  margin-bottom: 30px;
}

.output {
  border: 1px solid #222;
  padding: 30px 15px;
  background-color: #0006;
}

button {
  font-size: 1.5em;
  margin:5px;
  text-align: right;
}
