@import "~@amber-engine/amber-content/lib/styles/variables";

.circle {
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  border: 0.1rem solid $coral;
  height: 3rem;
  width: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: $coral;
  font-size: 20px;

  &:hover {
    background: $coral;
    color: #fff;
  }
}
