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 {
  font-family: sans-serif;
   margin: 0;
}

.header {
  display:flex;
  justify-content:center;
  align-items:center;
  background-image: url("../img/header.png");
  color: white;
  font-size: 20px;
  background-size:100% 100%;
  overflow: hidden;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
}

.content {
  width: 340px;
  margin: auto;
  text-align: center;
  padding-top: 90px;
}

.footer {
  display:flex;
  justify-content:center;
  align-items:center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #5A7D17;
  color: white;
  height: 30px;
}

.center { 
  display:flex;
  justify-content:center;
  align-items:center;
}

button {     
    background-color: Transparent;
    background-repeat:no-repeat;
    border: none;
    cursor:pointer;
    overflow: hidden;        
}

.form { 
  text-align: center;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}

h3 {
  font-size: 18px;
  text-align: center;
}

input[type=text], select {
  width: 100%;
  padding: 5px 5px;
  margin: 5px 0;
  display: inline-block;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: lightgrey;
  font-size: 20px;
}

input[type=email], select {
  width: 100%;
  padding: 5px 5px;
  margin: 5px 0;
  display: inline-block;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: lightgrey;
  font-size: 20px;
}

input[type=password], select {
  width: 100%;
  padding: 5px 5px;
  margin: 5px 0;
  display: inline-block;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: lightgrey;
  font-size: 20px;
}

input[type=submit] {
  width: 110px;
  background-color: blue;
  color: white;
  padding: 7px 1px 7px 1px;
  margin: 8px 5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

input[type=reset] {
  width: 150px;
  background-color: blue;
  color: white;
  padding: 7px 10px;
  margin-left: 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=reset]:hover {
  background-color: #45a049;
}