:root {
	--text-color: #222;
	--primary-color: #54c0db;
	--secondary-color: #4f858d;
	--tertiary-color: #53565a;
	--highlight-color: #ec9e38;
	--link-color: #0366d6;
}

html {
	min-height: 100vh;
	box-sizing: border-box;
}
body {
	color: #222;
	color: var(--text-color);
	font-family: -apple-system, BlinkMacSystemFont, San Francisco, Roboto, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
	font-size: 14px;
	margin: 0;
	line-height: 1.5;
	overflow-x: hidden;
	border-top: 4px solid var(--primary-color);
	border-bottom: 4px solid var(--primary-color);
	min-height: 100vh;
	box-sizing: border-box;
	background-color: rgb(248 250 252);
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.5em 0;
	font-weight: 400;
	line-height: 1.2;
}

h1 {
	font-size: 2em;
}

a {
	color: inherit;
}

code {
	font-family: menlo, inconsolata, monospace;
	font-size: calc(1em - 2px);
	color: #555;
	background-color: #f0f0f0;
	padding: 0.2em 0.4em;
	border-radius: 2px;
}

.sr-only {
  left: -99999px;
  margin-left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}

@media (min-width: 400px) {
	body {
		font-size: 16px;
	}
}

