img {
  display: block;
  width: 50%;
  height: auto;
}

.container {
  border: 0.1rem solid black;
  width: 30rem;
  margin: auto;
}

.markers {
  width:  10rem;
  height: 2.5rem;
  margin: 1rem auto;
  font-size: 1.25rem;
  color: rgb(255, 255, 255);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.black {
  background-color: rgb(0,0,0);
}

/* Primary colors */
.red {
  background-color: rgb(255,0,0);
}
.green {
  background-color: rgb(0,255,0);
}
.blue {
  background-color: rgb(0,0,255);
}

/* Secondary colors */
.yellow {
  background-color: rgb(255,255,0);
}
.cyan {
  background-color: rgb(0,255,255);
}
.magenta {
  background-color: rgb(255,0,255);
}

/* Tertiary colors */
.orange {
  background-color: rgb(255, 127, 0);
}
.spring-green {
  background-color: rgb(0, 255, 127);
}
.violet {
  background-color: rgb(127, 0, 255);
}
.chartreuse-green {
  background-color: rgb(127, 255, 0);
}
.azure {
  background-color: rgb(0, 127, 255);
}
.rose {
  background-color: rgb(255, 0, 127);
}

/* HSL */
.hue-wheel {
  width: 17rem;
}