body .container main {
  display: flex;
  justify-content: center;
}
body .container main section#colors {
  display: flex;
  width: 80%;
  flex-direction: column;
  align-content: space-around;
  flex-wrap: wrap;
  background-color: white;
}
body .container main section#colors h2 {
  font-size: 2em;
  text-align: center;
}
body .container main section#colors form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}
body .container main section#colors form fieldset {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 10px;
  width: 25%;
}
body .container main section#colors form fieldset legend {
  padding: 10px;
}
body .container main section#colors form fieldset div.color-sample {
  width: 200px;
  height: 150px;
  box-shadow: 10px 10px 5px grey;
  margin: 20px 0;
}
body .container main section#colors form div.button {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
body .container main section#colors form div.button button {
  height: 40px;
  font-size: 1.5em;
  border-radius: 15px;
  margin: 20px;
  padding: 0 10px;
  color: cornflowerblue;
  background-color: #0a147d;
}
body .container main section#colors form div.button button:last-child {
  color: #cbdbb3;
  background-color: #0f380f;
}
body .container main section#colors form div.button button:hover {
  transform: scale(110%);
}
body .container main section#colors form div.button button.reset {
  background-color: white;
  color: black;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .container main section#colors form div.button button.reset i {
  transform: rotate(-90deg);
}
body .container main section#colors form div.button button.reset:hover {
  cursor: pointer;
  transform: scale(105%);
}
body .container main section#colors form div.button button.reset:hover i {
  transition-timing-function: ease-in;
}
body .container main section#colors form.upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 200px;
}
body .container main section#colors form.upload label {
  font-size: 1.3em;
  font-weight: 600;
}
body .container main section#colors form.upload input {
  font-size: 1em;
}
body .container main section#colors form.upload button {
  width: 20%;
  height: 40px;
  background-color: #0b782d;
  border-radius: 10px;
  border: none;
  font-size: 1.3em;
  color: #add8ad;
}

/*# sourceMappingURL=colors.css.map */
