.hint {
  border-radius: 0.25rem;
  padding: 1rem 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  width: 75%;
  justify-content: center;
  box-shadow: 0 0 0 1px var(--color-honey);
  padding-right: 1rem;
}
.hint h2 {
  margin-bottom: 0.5rem;
}
.hint .hexagon-container {
  background: rgba(var(--color-honey), 0.4);
  display: flex;
  padding: 0 1rem;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hint svg {
  fill: var(--color-honey);
  width: 5rem;
  height: 5rem;
  transform: rotate(-30deg);
}
.intro {
  width: 75%;
  margin-bottom: 2rem;
}

@media screen and (max-width: 992px) {
  .intro {
    width: 100%;
  }
  .hint {
    width: 100%;
  }
}

@media only screen and (max-width: 550px) {
  .hint {
    flex-direction: column;
    padding: 1rem;
  }
}
