/************************************************
 * Copyright (c) 2026 Arthur Kasparian          *
 * All rights reserved.                         *
 ************************************************/

html {
	overflow: clip;
	
	body {
		overscroll-behavior: none;
		overflow-y: auto;
		
		> header {
			position: sticky;
			top: 0;
			
			> button {
				-webkit-tap-highlight-color: transparent;
				
				&:hover > svg {
					scale: 1.2;
				}
				
				&:active svg {
					scale: 1;
				}
			}
		}
		
		a {
			position: relative;
			
			&::before {
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				
				width: 100%;
				height: 100%;
				z-index: -1;
				
				clip-path: inset(100% 0 0 0);
			}
			
			&[href="."], &:hover, &:focus {
				&::before {
					clip-path: inset(0);
				}
			}
		}
	}
}