
body {
  margin: 0;
  overscroll-behavior-y: none;
  overscroll-behavior-x: none;
}

body * {
  flex-shrink: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background-color: hsla(0,0%,100%);
}

::-webkit-scrollbar-thumb {
  background-color: hsla(200,30%,86%,0.8);
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

::-webkit-resizer {
  background-color:transparent;
}

a, button {
  transition-duration: 300ms;
  transform: scale(1);
}
a:active, button:active {
  transition-duration: 0ms;
  transform: scale(1.04);
}