body {
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  min-height: 100vh;
}

* {
  padding: 0rem;
  margin: 0rem;
  box-sizing: border-box;
}

button {
  cursor: pointer;
}

h4 {
  pointer-events: none;
}

.reference {
  border-radius: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: end;
  flex-direction: row;
  margin: 1rem;
  padding: 1rem 2rem;
  width: 6rem;
  height: 6rem;
  cursor: pointer;
}

button {
  padding: 1rem 2rem;
  border-radius: 0.2rem;
  border: none;
  background: rgb(88, 88, 88);
  color: white;
  font-size: 1rem;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.color {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 2rem 1rem;
}

@keyframes active-ref {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 90%;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 80%;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 70%;
  }
}
@media screen and (max-width: 500px) {
  html {
    font-size: 60%;
  }
}
@media screen and (max-width: 410px) {
  html {
    font-size: 50%;
  }
}/*# sourceMappingURL=style.css.map */