body {
  margin: 0;
  padding: 0;
}

#fade {
  width: 100vw;
  height: 100vh;
  background-color: rgb(242, 241, 232);
  animation: append-animate 1s linear;
}

#container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}

button {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  cursor: pointer;
  background-color: whitesmoke;
  color: black;
  box-shadow: 0px 0px 60px 10px #0ff;
  font-weight: 600;
}

button:active {
  background-color: rgb(222, 222, 222);
}

#currentHues {
  width: auto;
  height: 350px;
  margin-bottom: 4em;
}

.hue {
  width: 50px;
  height: 50px;
  margin: 2em;
  border-radius: 25px;
}

@keyframes append-animate {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}