@import url('satoshi.css');

:root{

	--primary-color: #2a95d7;
	--primary-color-light: #abe4ff;

}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, textarea {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	
	font-family: Satoshi-Variable;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-variation-settings:
	"wdth" 100;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

*{
	user-select:none;
}

html{
	
	width: 100vw;
	max-width: 1600px;
	margin:0 auto;
	height: 100vh;
	overflow: hidden;
	
}
body {
	color-scheme:dark;
	line-height: 1;
	background: light-dark(#eaeff6, #0a090b) ;
	width: 100vw;
	height: 100vh;
	padding:80px 16px 16px 16px;
	box-sizing: border-box;
	color: #fff;
	
	max-width: 1600px;
	
	margin:0 auto !important;
	
	position: relative;
	
	/* transform: translate3d(0,0,0); */

	overflow-x: visible;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

h1,h2,h3,h4,h5,h6{
	font-weight: 500;
}

h1{font-size: 30px;}
h2{font-size: 20px;}
h3{font-size: 18px;}
h4{font-size: 16px;}
h5{font-size: 14px;}
h6{font-size: 12px;}

p, a{font-size: 12px; font-weight: 500;}

strong{

	font-weight: 900 !important;
	
}


#configurator{

	width:450px;
	position: fixed;
	top:0;
	right:0;
	height: 100vh;

	background: #0A090B;
	background: linear-gradient(45deg, rgba(10, 9, 11, 1) 0%, rgba(25, 25, 30, 1) 100%);

	box-shadow: 0 0 128px rgba(0,0,0,.5);

}