body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.image-btn {
  --btn-scale: 1;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: filter 180ms ease, transform 180ms ease;
}

.image-btn .btn-image {
  display: block;
  width: clamp(140px, 20vw, 240px);
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  transition: transform 180ms ease;
}

.image-btn:hover .btn-image {
  transform: scale(1.07);
}

.image-btn:active .btn-image {
  transform: scale(0.95);
}

.image-btn:focus,
.image-btn:focus-visible {
  outline: none;
  box-shadow: none;
}
