body,
html {
  color: #000;
  padding: 0;
  margin: 0;
}
.container {
  font-family: system-ui, sans-serif;
  max-width: 1280px;
  margin: 0px auto 0px auto;
  padding: 32px 16px;
}
.hero {
  display: flex;
  justify-content: center;
}

.hero .hero_content_icon {
  font-size: 28px;
  margin-right: 12px;
  color: #000;
}
.hero_content_icon:hover {
 opacity: .8; 
}

.hue-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.square {
  width: 100px;
  height: 100px;
  transition: 0.6s all ease;
  position: relative;
}

.square-dot::before {
  content: "";

  height: 15px;
  width: 15px;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100px;
}
.row {
  display: flex;
  flex-direction: row;
}

.hue-container button {
  border: none;
  font-size: 16px;
  margin-top: 20px;
  padding: 10px 20px;
  width: 250px;
  color: white;
  background: #2980b9;
  transition: 1s all ease;
  text-transform: uppercase;
}
.hue-container button:focus {
  outline: none;
}
#btnRandomize {
  background: #2980b9;
}
#btnOrder {
  background: #27ae60;
}

#banner {
  position: absolute;
  width: 100%;
  background: #22a7f0;
  padding: 10px 0;
  text-align: center;
  top: 40%;
  opacity: 0;
  transition: all 1.3s ease;
  z-index: -1;
}
#banner-text {
  color: white;
  font-size: 38px;
  text-transform: uppercase;
}

#banner.showBanner {
  opacity: 1;
  transition: all 1.3s ease;
  z-index: 10;
}
#banner.banner--loser {
  background: #e74c3c;
}
#banner.banner--winner {
  background: #27ae60;
}

.hue-container .hint {
  color: #aaa;
  font-size: 12px;
  text-align: center;
}
.hue-container .disclaimer {
  color: #aaa;
  font-size: 12px;
  text-align: center;
  margin: 6px 0 16px 0px;
}

@media (max-width: 700px) {
  .square {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 340px) {
  .square {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 250px) {
  .square {
    width: 30px;
    height: 30px;
  }
  .hue-container button {
    width: 150px;
  }
}
