body{
  margin: 0px;
  padding: 0px;
  font-family: sans-serif;
  overflow: hidden;
}

header{
  padding: 20px;
  background-color: #333;
  border-bottom: 1px solid #000;
}

.hidden{
  display: none;
}

#optionsArea{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#leftOptions, #rightOptions{
  width: 150px;
}

#rightOptions{
  text-align: right;
}

#optionsArea button{
  border:none;
  background: none;
  color: #fff;
  font-size: 20px;
  text-shadow: 0px 0px 8px #000;
}

#aspectRatioArea input{
  width: 50px;
  position: relative;
  top: -2px;
  margin: 0px 5px;
}

#aspectRatioArea{
  color: #DDD;
  text-shadow: 0px 0px 8px #000;
  letter-spacing: 0.05em;
  flex: 1;
  text-align: center;
}

#finishedImageArea{
  height: calc(100vh - 260px);
  width: 100%;
  background-color: #000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
}

#finishedImageArea h1{
  color: #fff;
  font-weight: 200;
  margin-top: 0px;
}

#finishedImageArea textarea{
  resize: none;
  width: calc(100% - 40px);
  height:calc(100% - 160px);
}

#colorChoiceArea{
  padding: 10px 20px;
  height: 120px;
}

#colorChoiceArea h1{
  margin-bottom: 0px;
  margin-top: 20px;
  padding-top: 0px;
  font-weight: 100;
  letter-spacing: 0.1em;
  color: #444;
}

#colorChoiceArea input, #colorChoiceArea div div {
  width: 70px;
  height: 70px;
  border: none;
  background: none;
  position: relative;
  z-index: 0;
}

#colorChoiceArea div::before{
  position: absolute;
  z-index: 1000;
  font-size: 50px;
  color: #FFF;
  top: 6px;
  text-shadow: 0px 0px 6px #000;
  pointer-events: none;
}

@-moz-document url-prefix() {
  #colorChoiceArea div::before{
    top:15px;
  }
}

#letterG::before{
  content: "G";
  left: 16px;
}

#letterA::before{
  content: "A";
  left: 19px;
}

#letterT::before{
  content: "T";
  left: 21px;
}

#letterC::before{
  content: "C";
  left: 18px;
}

#colorChoices{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

canvas{
  border: 1px solid '#FFF';
}
