*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue';
}

a {
  -webkit-tap-highlight-color: transparent;
}

body {
  height: 300vh;
  width: 100%;
}

.container-100 {
  height: 100vh;
  width: 100%;
}

.container-25 {
  background-size: cover;
  background-attachment: fixed;
  height: 25%;
  width: 100%;
}

/****************************************************
 * Scrollbar Styles
 ****************************************************/
body {
  --sb-track-color: #232e33;
  --sb-thumb-color: #6baf96;
  --sb-size: 12px;
}

body::-webkit-scrollbar {
  width: var(--sb-size);
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 1px;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 1px;
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
