.fancy-panel-button {
  width: fit-content;
  margin-inline: auto;
  cursor: pointer;

  transform: scale(1);
  transform-origin: center center;

  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.fancy-panel-button a {
  color: #ccc;
  font-size: 1.5em;
}

.fancy-panel-button:hover {
  transform: scale(1.12);
  filter: brightness(1.12);
}

.fancy-panel-button:hover a {
  color: #fee;
}

.fancy-panel {
  padding: 12px 20px;
  width: fit-content;
  font-family: CinzelDecorative, serif;
  margin-bottom: 0.5rem;
  box-sizing: border-box;

  scroll-margin-top: 150px;
  min-height: 60px;

  background-image: url("https://www.mithyr.com/images/brassback.png");
  background-repeat: repeat;
  background-position: center;
  background-size: 30%;

  border: 8px solid transparent;
  border-image-source: url("https://www.mithyr.com/images/bordercurlrelief_8.png");
  border-image-slice: 8;
  border-image-width: 8px;
  border-image-repeat: round;
}

.fancy-panel div.a {
  display: flex;
  align-items: center;
  font-weight: bold;
  height: 100%;
}

.fancy-panel div.b {
  padding-left: 5px;
}

@media (prefers-reduced-motion: reduce) {
  .fancy-panel-button,
  .fancy-panel-button a {
    transition: none;
  }
}
