div#cf-container,
div#input-container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 1vw 0;
}
div.input-group {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
div.colorfield {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 98%;
  height: 250px;
  border-radius: 15px;
  font-size: 1.4rem;
  font-weight: bold;
}
div#colorfield-outer {
  background-color: #000;
  color: #fff;
}
div#colorfield-middle {
  background-color: #888;
  color: #fff;
}
div#colorfield-inner {
  background-color: #fff;
  color: #000;
}
label,
.p-text {
  margin: 0 10px;
  font-size: 1rem;
}
div.headline {
  width: 100%;
}
div.headline h3 {
  text-align: center;
}
p.p-text {
  width: 100%;
  text-align: center;
}
colorfield-outer-output,
colorfield-middle-output,
colorfield-inner-output {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
}
div.boxes {
  width: 33%;
  min-height: 380px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 15px;
}
div.boxes-output {
  background-color: rgba(0, 0, 0, 0.05);
  width: 98%;
  min-height: 75px;
  margin: 10px 0;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
div.message {
  width: 50%;
  min-height: 3rem; 
  text-align: center;
  font-size: 0.75rem;
}
.action-buttons {
  width: 80px;
  padding: 3px;
}
#action-group {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#button-group {
  width: 60%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
}
#action-result {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
}
/**####################   Media Queries   #################### **/
@media (orientation: portrait) {
  #action-group {
    flex-direction: column;
  }
  #button-group {
    width: 100%;
  }
  #action-result {
    width: 100%;
  }
}