/* 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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
}


/*
	Defining some basic styles...
	
	Zoltán Hosszú, applying to 37signals
	05. 2025
*/

* {
	box-sizing: border-box;
	position: relative;
	-webkit-font-smoothing: antialiased;
}

html { font-size: 16px; }

@media screen and (max-width: 1080px) {
	html { font-size: 13px; }
}

body {
	background: var(--color-background);
	color: var(--color-text-primary);
	font-family: -apple-system,system-ui,BlinkMacSystemFont,Aptos,Roboto,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
	letter-spacing: -0.3px;
	line-height: 1.3;
}

h1 {
	font-size: 2.5rem;
	font-weight: var(--bold-weight);
}

h2 {
	font-size: 2rem;
	font-weight: var(--bold-weight);
}

h3 {
	font-size: 1.5rem;
	font-weight: var(--bold-weight);
}

h4 {
	font-size: 1.25rem;
	font-weight: var(--bold-weight);
}

h5 {
	font-size: 1rem;
	font-weight: var(--bold-weight);
}

a { color: var(--color-text-primary); }

	a:hover { color: var(--color-text-primary-hover); }

strong { font-weight: var(--bold-weight); }

main {
	padding: 6rem 2rem;
	margin: 0 auto;
	max-width: 1440px;
}

@media screen and (max-width: 1080px) {
	main { padding: 6rem 1rem; }
}

@media screen and (max-width: 640px) {
	
}


