@font-face {
  font-family: "TheGoodMonolith";
  src: url("./TheGoodMonolith.woff");
}

body {
  font-family: 'TheGoodMonolith', sans-serif;
  font-size: 1em;
  color: white;
  background-color: #190049;
}

body .vertical-centerer {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

body .centerer {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
}

body .centerer-items {
  display: -ms-inline-flexbox;
  display: -webkit-inline-box;
  display: inline-flex;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: start;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

body #download_palette, body #download_palette_png {
  text-decoration: none;
  color: gold;
  width: 100%;
  height: 50px;
  background-color: #3b00af;
  padding: 10px;
  padding-bottom: 12px;
  border-radius: 10px;
  font-weight: bold;
  letter-spacing: 1px;
}

body .color_square {
  width: 32px;
  height: 32px;
  border-width: 2px;
  border-radius: 3px;
  border-color: black;
  border-style: solid;
  margin-left: 1px;
  margin-bottom: 1px;
}

body .color_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body input[type='text'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background-color: #190049;
  background-color: none;
  color: white;
  font-family: 'TheGoodMonolith', sans-serif;
  font-size: 1em;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
  width: 100px;
  padding: 5px;
  border-bottom: 2px solid #8749ff;
}

body input[type='text']:focus {
  width: 200px;
}

body #add_color, body #end_color {
  visibility: hidden;
}

body #color_picker_add, body #color_picker_end {
  border-width: 2px;
  border-radius: 3px;
  border-color: #333333;
  border-style: solid;
}

body input[type=button] {
  border: none;
  background-color: #8749ff;
  color: white;
  font-size: 1em;
  margin-left: 5px;
}

body select, body option {
  font-family: 'TheGoodMonolith', sans-serif;
  font-size: 1em;
  background-color: #8749ff;
  color: white;
}

body input[type=range] {
  height: 3px;
}

body #interpolation {
  width: 100%;
}

body .delete_button {
  opacity: 0.2;
}

body .delete_button:hover {
  opacity: 1;
}
/*# sourceMappingURL=main.css.map */