
/* Header/Logo Title */
.header {
  padding: 15px;
  text-align: center;
  background: lightblue;
  color: darkslategrey;
}

/* Footer */
.footer {
  padding: 25px;
  background: lightblue;
}

body {
  background-color: rgb(220, 220, 220);
}

/* unvisited link */
a:link {
  color: darkblue;
}

/* mouse over link */
a:hover {
  color: magenta;
}

/* selected link */
a:active {
  color: blue;
}

h1 {
  font-family: verdana, calibri, helvetica, arial;
  font-size: 34px;
  text-align: center;
}

h2 {
  font-family: verdana, calibri, helvetica, arial;
  font-size: 25px;
  margin-left: 9px;
  text-align: left;
}

h3 {
  font-family: verdana, calibri, helvetica, arial;
  font-size: 21px;
  margin-left: 9px;
  text-align: left;
}

p {
  font-family: verdana, calibri, helvetica, arial;
  font-size: 19px;
  margin-left: 9px;
  text-align: left;
}

ul {
  list-style-type: disc;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}