::-webkit-scrollbar {
  width: 10px;
  height: 1em;
}
::-webkit-scrollbar-track {
  background: white;
}
::-webkit-scrollbar-thumb {
  background: var(--neutral-medium);
  border: 2px solid #fff;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #030;
}
.main-header-logo {
  animation: logo-shrink linear both;
  animation-timeline: scroll(root);
  animation-range: 0 120px;
}
@keyframes logo-shrink {
  to {
    width: 130px;
  }
}
