* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Montserrat", sans-serif;
	color: black;
	font-size: 8px;
	background-image: url("bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

@media screen and (min-width: 375px) {
	.header,
	.content,
	.navbar {
		font-size: 9px;
	}
}

@media screen and (min-width: 576px) {
	.header,
	.content,
	.navbar {
		font-size: 10px;
	}
}

@media screen and (min-width: 786px) {
	.header,
	.content,
	.navbar {
		font-size: 12px;
	}
}

@media screen and (min-width: 992px) {
	.header,
	.content,
	.navbar {
		font-size: 14px;
	}
}

@media screen and (min-width: 1200px) {
	.header,
	.content,
	.navbar {
		font-size: 16px;
	}
}

@media screen and (min-width: 1400px) {
	.header,
	.content,
	.navbar {
		font-size: 18px;
	}
}

ul {
	list-style-type: square;
}

.grid-container {
	display: grid;
	grid-template-areas:
		'header'
		'content';
	margin-bottom: 4em;
}

.navbar {
	display: flex;
  position: fixed;
  bottom: 0;
  width: 100%;
	justify-content: center;
}

.navbar > a {
  text-align: center;
  text-decoration: none;
}

.navbar > a:hover {
  background: #f1f1f1;
  color: black;
}

.navbar > a.active {
  background-color: lightblue;
  color: white;
}

.header {
	grid-area: header;
	text-align: center;
	text-shadow: 1px 1px 2px orange, 0 0 1em yellow, 0 0 0.2em yellow;
}

.content {
	grid-area: content;
	margin: auto;
	text-align: left;
	text-shadow: 1px 1px 2px orange, 0 0 1em yellow, 0 0 0.2em yellow;
}

#footnote {
	text-align: right;
	font-size: 0.8em;
}

#center {
	text-align: center;
	text-shadow: none;
}

#la {
	text-align: left;
}

#ra {
	text-align: right;
}

table.form {
	border: 0px;
}

input[type=submit], input[type=reset] {
	background-color: darkblue;
	border: 2px solid blue;
	color: white;
	padding: 16px 32px;
	text-decoration: none;
	margin: 4px 2px;
	cursor: pointer;
}

input[type=submit]:hover, input[type=reset]:hover {
	background-color: darkblue;
	border: 2px solid blue;
	color: white;
	padding: 16px 32px;
	text-decoration: none;
	margin: 4px 2px;
	cursor: pointer;
	font-weight: bold;
}

.blink {
  animation-name: animation_blink;
  animation-timing-function: ease-in;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

@keyframes animation_blink {
    0% { opacity: 1; }
    50% { opacity: 0.1; }
    100% { opacity: 1; }
}

#green {
	color: #00FF00;
}

#red {
	color: #FF0000;
}

#orange {
	color: orange;
}

a:link, a:visited {
  background-color: white;
  color: black;
  border: 2px solid lightblue;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  background-color: lightblue;
  color: white;
}
