*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  background: var(--paper);
  color: var(--ink);
}
main {
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
}
ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
::selection {
  background: var(--ink);
  color: #fff;
}
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
@keyframes dvFade {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes dvKen {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1.16);
  }
}
@keyframes dvCue {
  0% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.4;
  }
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
}
.vy-section {
  scroll-margin-top: 88px;
}
.vy-desk {
  display: flex;
}
.vy-mob {
  display: none;
}
@media (max-width: 880px) {
  .vy-desk {
    display: none !important;
  }
  .vy-mob {
    display: flex !important;
  }
}

