/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: linear-gradient(MediumVioletRed, black);
  background-attachment: fixed;
  font-family: Verdana;
  color: white;
  margin-bottom: 100px;
}
p {
  font-family: arial;
  font-size: 100%;
}
h1 {
  background-color: #333333;
  padding: 15px 30px;
  margin: 50px 100px 0px;
  text-align: center;
  border-style: solid none;
  border-color: white;
  border-width: thin;
}
h2 {
  background-color: #333333;
  padding: 10px 30px;
  margin: 20px 100px;
  border-style: solid none;
  border-color: white;
  border-width: thin;
}
image {
  margin: 50px;
}
div {
  max-width: 700px;
  background-color: MidnightBlue;
  padding: 10px 200px 10px 30px;
  margin: 20px 100px;
  border-style: solid none;
  border-color: white;
  border-width: thin;
}
a:link {
  color: gold;
}
a:visited {
  color: hotpink;
}
a:hover {
  color: white;
}
a:active {
  color: white;
}

.navbar {
  list-style-type: none;
  margin: 5px 100px;
  padding: 0;
  background-color: MidnightBlue;
  display: flex;
  justify-content: center;
  border-style: solid none;
  border-color: white;
  border-width: thin;
}

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

ul li a:hover {
  color: white;
  background-color: Teal;
}

ul li a:visited {
  color: white;
}

.active {
  color: white;
  background-color: #333333;
}