html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: var(--twl-scroll-offset);
  scrollbar-color: rgb(var(--twl-accent-rgb) / 0.82) #3c3c3c;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(176, 129, 0, 0.16), transparent 30%),
    linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
  color: var(--twl-color-paper);
  font-family: var(--twl-font-body);
  overflow-wrap: anywhere;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0.92rem;
  height: 0.92rem;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: #3c3c3c;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  border: 3px solid #3c3c3c;
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(var(--twl-accent-rgb) / 0.94), rgb(var(--twl-accent-rgb) / 0.58));
  background-clip: padding-box;
}

html::-webkit-scrollbar-button,
body::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
  background: #3c3c3c;
}

p {
  margin: 0 0 var(--twl-space-md);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
