/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}

html {
	/* prevent content jumping when scrollbars appear */
	/*margin-left: calc(100vw - 100%);*/
}

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}

p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
}

#svelte {
	isolation: isolate;
}

body {
	color: #333;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	background-color: #161616;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Archivo', sans-serif;
	font-weight: 500;
}

a {
	color: rgb(0,100,200);
	text-decoration: none;
}

:root {
	--primary-light: #29b78a;
	--primary: #229161;
	--primary-dark: #106b46;
	--secondary: #1e2145;
	--white: #fff;
	--grey: #b8b8b9;
	--grey-dark: #272727;
	--red: #ff6b6b;
	--hover: rgba(0, 0, 0, 0.3);
}

input[type="range"] {
	height: 0;
}

button:disabled {
	color: #999;
}

button:focus {
	border-color: #666;
}
.errtxt {
	color:red;
}

.muted {
	filter: brightness(0.75);
}

.wait {
	text-align: center;
	font-size: 1.5rem;
	color: #97d4e8;
	--size: 400px;
	position: fixed;
	top: 0;
	left: 0;
	inset: calc(50% - calc(var(--size)/2));
	height: var(--size);
	width: var(--size);
}

.content {
	padding: 10rem;
	display: grid;
	grid-gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
}

