*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: AntiqueOlive;
  src: url(../data/AntiqueOliveLT-Light.woff);
  font-weight: 100;
}

@font-face {
  font-family: AntiqueOlive;
  src: url(../data/AntiqueOliveLT-Roman.woff);
  font-weight: normal;
}

@font-face {
  font-family: AntiqueOlive;
  src: url(../data/AntiqueOliveLT-Bold.woff);
  font-weight: bold;
}

:root {
  --bg-color:rgb(250,250,250);
}

body {
  position: relative;
  font-family: AntiqueOlive, monospace;
  color: rgba(45, 45, 45);
  background-color: var(--bg-color);
  font-size: 12px;
  padding: 0;
  margin: 0;
  max-width: 100vw;
  overflow: hidden;
}

canvas {
  vertical-align: top;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

#controls {
  width: 100vw;
  padding: 3em;
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

section{
  width: 33%;
}

div:not(#bottomLeft):not(#bL1):not(#bL2) {
  display: flex;
  align-items: left;
  margin-bottom: 10px;
}

#inputText {
  width: 200px;
  height: 35;
  padding: 10px 10px 10px 15px;
  background: rgba(60, 60, 60);
  border-radius: 20px;
  color: rgb(170, 170, 170);
  border: none;
  letter-spacing: 1.5px;
  box-shadow: -1px -1px 1px white, 1px 1px 1px rgba(0, 0, 0, 0.25);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#inputText:focus {
  background: rgba(100, 100, 100);
  letter-spacing: 1.5px;
  color:whitesmoke;
}

button {
  cursor: pointer;
  height: 35px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5px;
  margin-left: 10px;
  background: rgba(60, 60, 60);
  border: none;
  box-shadow: -1px -1px 1px white, 1px 1px 1px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  color: rgba(230, 230, 230);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

button:active {
  background: rgba(100, 100, 100);
  box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.25), 1px 1px 1px white;
}

::placeholder {
  color: rgba(140, 140, 140);
  font-size: 0.8em;
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 1.5px;
  text-align: left;
  text-transform: uppercase;
}

#bgColor,
#activeColor,
#fillColor {
  margin-top: 10px;
}

input:not(#inputText):not(#bgColor):not(#activeColor):not(#fillColor):not(
    #blackOutline
  ):not(#blackFill) {
  width: 200px;
  margin-right: 20px;
  border-radius: 10px;
}

#blackOutline, #blackFill{
  margin-right: 10px;
}

#blackOutline {
  margin-top: 10px;
}

input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: grab;
  height: 5px;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
input[type="range"]::-moz-range-thumb {
  border: none;
}

::-webkit-input-placeholder {
  /* Edge */
  font-family: AntiqueOlive, monospace;
  color: rgba(140, 140, 140);
  font-size: 10px;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-family: AntiqueOlive, monospace;
  color: rgba(140, 140, 140);
  font-size: 10px;
}

input::-moz-range-track {
  display: flex;
  align-items: center;
  height: 5px;
  background-color: rgba(60, 60, 60);
  border-radius: 5px;
  box-shadow: inset -2px -2px 8px rgba(255, 255, 255, 0.5),
    inset 2px 2px 8px rgba(0, 0, 0, 0.5);
}

input::-webkit-slider-runnable-track {
  display: flex;
  align-items: center;
  background-color: rgba(60, 60, 60);
  height: 5px;
  border-radius: 5px;
  box-shadow: inset -2px -2px 8px rgba(255, 255, 255, 0.5),
    inset 2px 2px 8px rgba(0, 0, 0, 0.5);
}

input::-webkit-slider-thumb {
  position: relative;
  width: 15px;
  height: 15px;
  background-color: rgba(60, 60, 60);
  border-radius: 50%;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

input::-webkit-slider-thumb:hover {
  height: 20px;
  width: 20px;
}

input::-moz-range-thumb {
  position: relative;
  width: 15px;
  height: 15px;
  background-color: rgba(60, 60, 60);
  border-radius: 50%;
}

label, button{
  font-family: AntiqueOlive, monospace;
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 1.5px;
  font-size: 1em;
  text-align: left;
  text-transform: uppercase;
}

aside {
  height: 30vh;
  width: calc(100vw - 6em);
  position: absolute;
  top: 3em;
  left: 3em;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

p{
  z-index: 10;
  height: 100%;
  width: 33%;
  margin: auto;
  font-family: AntiqueOlive, monospace;
  font-weight: 100;
  line-height: 1.5;
  letter-spacing: 1.5px;
  font-size: 1em;
  text-align: left;
  text-transform: uppercase;
}

b{
  font-weight: normal;
}

a{
  color: rgba(45, 45, 45);
  text-decoration-thickness: from-font;
}

#bottomLeft{
  display: flex;
  align-items: left;
  margin-bottom: 10px;
}

#bL1{
  width: 200px;
}
