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

html, body {
  height: 100%;
  overflow: hidden;
  background: var(--bg-color, #ffffff);
  transition: background-color 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.wrap {
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 10.2vw;
  min-width: 68px;
  max-width: 187px;
  aspect-ratio: 2495 / 2025;
  height: auto;
  cursor: pointer;
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  background-color: var(--logo-color, #000000);
  -webkit-mask-image: url('Union.svg');
  mask-image: url('Union.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, background-color;
}

@media (pointer: fine) and (hover: hover) {
  .logo {
    width: 7.14vw;
    min-width: 48px;
    max-width: 131px;
  }
}
