/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
  background-image: url("images/background.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

#header{
	text-align: center;
}

img{
	height: 250px;
}

img.BlackBackground{
	background-color: #000;
}
.textbox {
  background-color: #f9fafc;
  width: auto;
  border: 15px solid #581272;
  padding: 50px;
  margin: 20px;
  font-size: 15pt;
}
.hidden{
	color: #333;
}

.form{
    position: relative;
	background-color: #fff;
	padding: 15px;
	margin-bottom: 10px;
	border-radius: 10px;
	max-width: 250px;
	max-height: 250px;	
}
form {
	text-align: center;
	margin-top: 0;
}

.submit {
	background-color: #581272;
	padding: 12px 45px;
	border-radius: 5px;
	cursor: pointer;
	color: #ffffff;
	border: none;
	outline: none;
	margin: 0;
	font-weight: bold;
}
.submit:hover {
	background-color: #43a09d;
}



/* Headers, Paragraphs, text type stuff */
p{
	font-size: 20pt;
	color: #fff;
	text-align: center;
	padding: 18px 0 18px 0;
	margin: 0 0 10px 0;
}
h1 {
	font-size: 20pt;
	color: #581272;
	text-align: center;
	padding: 18px 0 18px 0;
	margin: 0 0 10px 0;
}
h1 span {
	border: 4px dashed #581272;
	padding: 10px;
}
h2 {
	font-size: 50pt;
	color: #581272;
	text-align: center;
	padding: 18px 18px 18px 18px;
	margin: 0 0 10px 0;
}


/* Links */
a:link {
  color: #green;

}
a:visited{
	colour: #red;
}
a:hover {
  color: hotpink;
  background-color: black;
}
a:active {
  color: blue;
}


/* Footer */
.copyright {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 14px;
  text-decoration: none;
}


/* Lists */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  position: fixed;
  top: 0;
  width: 100%;
}
li {
  float: left;
  text-align: center;
  border-right: 1px solid #bbb;
}
li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 14px;
  text-decoration: none;
}
li a:hover {
  background-color: #111;
}
li:last-child {
  border-right: none;
}
li a:hover:not(.active) {
  background-color: #111;
}
.active {
  background-color: #4CAF50;
}  
ul.footer{
	position: fixed;
	top: 93%;
	width: 100%
	
}
ul.footer a img{
  height: 35px;
  float: left;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 7px;
}
  
/* Tables */
table.center {
	border-collapse: collapse;
    margin-left:auto; 
    margin-right:auto;
  }
th, td {
	color: #fff;
	text-align: center;
	padding: 8px;
	font-size: 14pt;
	max-height: 200px;
}
td a{
  display: block;
  color: white;
  background-color: #111;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
td img{
	height: 150px;
}