:root {
	--input-border: #8b8a8b;
	--input-focus-h: 245;
	--input-focus-s: 100%;
	--input-focus-l: 42%;
}

@font-face {
    font-family: 'AtkinsonHyperlegible';
    src: url('fonts/Atkinson-Hyperlegible-Regular-102.eot');
    src: url('fonts/Atkinson-Hyperlegible-Regular-102.eot?#iefix') format('embedded-opentype'),
        url('fonts/Atkinson-Hyperlegible-Regular-102a.woff2') format('woff2'),
        url('fonts/Atkinson-Hyperlegible-Regular-102.woff') format('woff'),
        url('fonts/Atkinson-Hyperlegible-Regular-102.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: "Spartan";
  src: url("fonts/Spartan-Regular.eot");
  src: url("fonts/Spartan-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Spartan-Regular.woff2") format("woff2"), url("../fonts/Spartan-Regular.woff") format("woff"), url("../fonts/Spartan-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
	box-sizing: border-box;
}

body {
	font-family: 'AtkinsonHyperlegible', sans-serif;
}

header {
	background-color: #ff5722;
}

img.banner {
	max-width: 60%;
}

.center {
	margin: auto;
}

div.banner {
	background-color: #ff5722;
	width: 90%;
	color: white;
	text-align: center;
}

h1.banner {
	font-family: 'Spartan', sans-serif;
	font-weight: bold;
}

nav {
	font-family: 'Spartan', sans-serif;
	font-weight: bold;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #ff5722;
}

nav ul li {
	float: left;
}

nav ul li a {
  display: block;
  color: white;
	font-weight: bold;
  padding: 14px 16px;
  text-decoration: none;
}

nav ul li a:hover {
  background-color: white;
	color: #ff5722;
}

nav ul li a.active {
  background-color: white;
	color: #2196f3;
	border-bottom: 2px solid #2196f3;
}

header.menu {
	background-color: #ff5722;
}

div.menu {
	display: flex;
	align-items: flex-end;
}

img.menu {
	height: 90px;
	margin: 4px;
	vertical-align: middle;
	display: inline;
}

h2.menu {
	font-family: 'Spartan', sans-serif;
	font-weight: bold;
	color: white;
}

h3 {
	font-family: 'Spartan', sans-serif;
	border-bottom: 2px solid #ff5722;
}

.container {
	display: grid;
	grid-template-columns: auto auto auto;
}

.container div {
	background-color: #f1f1f1;
	border: 1px solid #ff5722;
	padding: 10px;
	text-align: center;
	margin: 8px;
	border-radius: 15px;
}

.container a {
  display: block;
	color: black;
	font-weight: bold;
  padding: 14px 16px;
  text-decoration: none;
}

.container .ri-3x {
	color: #2196f3;
}

footer.tiny {
	text-align: center;
}

hr {
	width: 80%;
	color: #ff5722;
}

.viewer {
	margin: 15px;
	box-shadow: 10px 10px lightblue;
	border-radius: 8px;
	border: 1px solid #777;
	padding: 8px;
	scrollbar-width: thin;
	scrollbar-color: #ff5722 #ddd;
}

.grid-container {
	display: grid;
	grid-template-areas:
	'header'
	'menu'
	'main'
	'footer';
	background-color: white;
	gap: 10px;
}

.header {
	grid-area: header;
}

.menu {
	grid-area: menu;
	background-color: #ff5722;
}

.content {
	grid-area: main;
}

.content > h2 {
	font-family: 'Spartan', sans-serif;
	border-bottom: 2px solid #ff5722;
}

.footer {
	grid-area: footer;
}

.slideshow-container {
	max-width: 1000px;
	position: relative;
	margin: auto;
}

.hideslide {
	display: none;
}

.showslide {
	display: block;
}

.caption {
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}

.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active, .dot:hover {
	background-color: #717171;
}

.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}

.feature {
	max-width: 400px;
	margin: auto;
	text-align: center;
}

.feature > h2 {
	font-family: 'Spartan', sans-serif;
	border-bottom: 2px solid #ff5722;
}

.feature > i {
	color: #2196f3;
	margin: auto;
}

img.icon {
	max-width: 42px;
}

.dotline {
	margin: auto;
	max-width: 120px;
}

.launch {
	background-color: #ff5722;
	color: white;
	font-family: 'Spartan', sans-serif;
	font-size: 18px;
	margin: auto;
	max-width: 120px;
	border-radius: 7px;
	text-align: center;
	padding: 5px;
	margin-bottom: 15px;
	box-shadow: 7px 7px lightblue;
}

.launch > a {
	text-decoration: none;
	color: white;
}

.message {
	text-align: center;
	max-width: 300px;
	margin: auto;
}

.message > h2 {
	font-family: 'Spartan', sans-serif;
}

.message > p {
}

@media only screen and (max-width: 600px) {

	nav ul li {
		float: none;
	}
	
	.container {
		grid-template-columns: auto;
		width: auto;
	}

	div.menu {
		align-items: center;
	}
}

@media only screen and (min-width: 600px) {
	.container {
		grid-template-columns: auto;
	}
}

@media only screen and (min-width: 768px) {
	.container {
		grid-template-columns: auto auto;
	}
}
@media only screen and (min-width: 992px) {
	.container {
		grid-template-columns: auto auto auto;
	}

	.feature > p {
		font-size: 18px;
	}

	.message > p {
		font-size: 18px;
	}
}
@media only screen and (min-width: 1200px) {
	.container {
		grid-template-columns: auto auto auto auto;
	}

	.feature > p {
		font-size: 20px;
	}
}
