@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 25px auto;
  font-family: "Lato", sans-serif;
  line-height: 2;
  max-width: 400px;
}

#input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

label {
  display: inline-block;
  text-align: right;
  width: 140px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

input {
  height: 30px;
  margin-top: 15px;
  margin-left: 12px;
  border-radius: 5px;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  padding: 0 5px;
  width: 32%;
}

button {
  width: 35%;
  height: 40px;
  margin: 25px 10px;
  padding: 8px 16px;
  font-family: inherit;
  border: none;
  background: #2aa02a;
  color: white;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}

#reset {
  background: red;
  color: white;
}

.notes {
  display: block;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
  margin: 10px 18px;
  text-align: justify;
}

.result--label {
  display: inline-block;
  background: #fbf0f0;
  padding: 0 10px;
}

.hidden {
  display: none;
}
/*# sourceMappingURL=styling.css.map */