@import '_reset'; :root { --color-text: #1a202c; --color-background: #fff; } html, body, main, article { overscroll-behavior: none; } html { font-weight: bolder; font-family: var(--font-primary); scrollbar-width: none; overscroll-behavior: none; font-size: 16px; } body::-webkit-scrollbar { display: none; } body { min-height: 100svh; font-weight: 400; overscroll-behavior: none; -webkit-font-smoothing: antialiased; color: var(--color-text); background: var(--color-background); } .loader { width: 100%; height: 100%; position: fixed; top: 0; left: 0; background-color: #ffffff; color: #000000; font-size: 1.5rem; font-weight: bold; display: grid; place-items: center; } a { &:hover { opacity: 0.7; transition: opacity 0.3s ease-in-out; } &.active { opacity: 0.7; pointer-events: none; } }