:host {

  --light: #ffffff;
  --dark: #141414;
  --hue: 250;
  --hue-2: 280;
  --hue-3: 310;
  --base-color: hsl(var(--hue), 95%, 55%);
	--comp-color-1: hsl(var(--hue-2), 95%, 55%);
  --comp-color-2: hsl(var(--hue-3), 95%, 55%);
	--font-title: "IBM Plex Serif", Georgia, -apple-system, BlinkMacSystemFont, sans-serif, serif;
  --font-content: "Funnel Sans", -apple-system, BlinkMacSystemFont, sans-serif, serif;
	--content-width: 80rem;
}

*, *::before, *::after {

	box-sizing: border-box;
}

h1, h2, figure, svg, ul {

  display: block;
	margin: 0;
	padding: 0;
}

ul, ol {

	list-style: none;
}

img {

	display: block;
	max-width: 100%;
}

a {

	color: inherit;
	text-decoration: none;
}

button {

	-webkit-font-smoothing: inherit;
	-moz-osx-font-smoothing: inherit;
	-webkit-appearance: none;
	appearance: none;
	display: inline-block;
	border: none;
	margin: 0;
	padding: 0;
	border-radius: 0;
	width: auto;
	overflow: visible;
	outline: none;
  font-family: var(--font-content);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	user-select: none;
	text-transform: uppercase;
	background-color: var(--light);
	color: var(--dark);
	transition: 0.2s ease all;
  text-align: center;
}

button::-moz-focus-inner {

  border: 0;
  padding: 0;
}

.sr_only {

  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

@keyframes spin {

  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
