
	*::before,
	*::after,
	*{
		box-sizing: border-box;
		margin: 0;
		padding: 0;
		
		color: inherit;
		
		font-family:    inherit;
		font-size:      inherit;
		font-weight:    inherit;
		font-style:     inherit;
		letter-spacing: inherit;
		text-transform: inherit;
		
		line-height: inherit;
	}
	
	html,body{
		height: 100%;
	}
	
	html{
		font-size: 18.75px;
	}
	
	body{
		font-family:    system-ui, sans-serif;
		font-size:      inherit;
		font-weight:    normal;
		font-style:     normal;
		letter-spacing: -0.00625em;
		text-transform: none;
		line-height: var(--base-line-height, 1.375);
	}
	
	h1,h2,h3,h4,h5,h6,p,ol,ul,dl{
		margin-bottom: calc( 1rem * var(--base-line-height, 1.375) );
	}
	
	h1,h2,h3,h4,h5,h6{
		font-weight: 600;
		line-height: 0.96875;
		letter-spacing: -0.01875em;
	}
	
	h1{
		font-size: 2.0000rem;
	}
	h2{
		font-size: 1.5000rem;
	}
	h3{
		font-size: 1.2500rem;
	}
	h4{
		font-size: 1.1250rem;
	}
	h5{
		font-size: 1.0625rem;
	}
	h6{
		font-size: 1.03125rem;
	}
	p{
		font-size: 1.0000rem;
	}
	
	a{
		text-decoration: none;
	}


	.container{
		max-width: 1080px;
		margin: auto;
	}
	
	.site-banner h1{
		margin: 0;
	}
	.site-banner{
		padding-block: calc( 1.25rem * var(--base-line-height, 1.375) );
	}
	
	.site-nav a:hover{
		scale: 1.125;
		translate: 0 0%;
	}
	.site-nav a{
		background: #00000011;
		padding: 0.4375em 0.75em;
		margin-inline: 0.25em;
		font-weight: 600;
		display: inline-block;
		transition: all 0.0625s ease-out;
	}
	.site-nav{
		line-height: 1;
		letter-spacing: -0.04375em;
		padding-block: calc( 0.48675rem * var(--base-line-height, 1.375) );
		font-size: 0.8125em;
		background-image: linear-gradient(to bottom, #00001810, #00001820);
		box-shadow: 0 0.4375em 1.00em -0.3125em #00000022;
	}

	.site-header{
		text-align: center;
		background-color: #fff;
		background-image: linear-gradient(to bottom, #0000201C, #0000201C);
	}
	
	.site-header{
		border-bottom: 1px solid #dedede;
		position: sticky;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
	}
	
	.page-content{
		background-color: #f4f4f4;
		min-height: 100%;
		width: 100%;
		background-image: linear-gradient( 115deg, #0000000A, #00000002 );
		background-size: 3px 3px;
		background-repeat: repeat;
		padding-block: 4.5rem;
	}
	
	.viewport{
		width: 100%;
		height: 100%;
	}
	
	
	.button {
	    min-width: 16em;
	    display: inline-block;
	    color: #fff;
	    line-height: 1;
	    padding: 1em 1em;
	    border-radius: 0.4375em;
	    background-color: #383838;
	    box-shadow: 0 0.50em 0.50em -0.125em #00000044;
	    transition: all 0.09375s ease-out;
	    text-align: center;
	    margin-block: 0.50em;
	}
	
	.button:hover{
		color: #fff;
		background-color: #787878;
		box-shadow: 0 0em 0em -0.125em #00000000;
		scale: 1.125;
	}
	
	