body {
  background-color: black;
  color: white;
  font-family: Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

header {
  background-color: #111;
  padding: 1em 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 2px -2px #900;
}

.lk a {
  text-decoration: none;
  color: #900;
  padding: 0.5em 1em;
}

nav ul  { /* This is the top part of the Nav Bar */
  background-color: #111; 
  border-style: solid;
  border-color: #900; 
  border-width: 2px;
  padding: 10px; 
  border-radius: 15px;
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
}

nav ul li { /* This is the text inside the navbar specifically the spacing */
  margin: 0 10px;
}

nav ul li a { /* This is the text inside the navbar */
  text-decoration: none;
  color: white;
  font-size: 1.2em;
  padding: 0.5em 1em;
  transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover { /* This controls what happens when you hover over the navbar text*/
  color: white;
  border-radius: 10px;
}

.active {
  background-color: #900;
  color: white;
  border-radius: 30px;
  border-style:solid;
}

main {
  padding: 6em 2em 2em;
  text-align: center;
}

img {
  border-radius: 30px;
  display: block;
  margin: 0 auto;
}

footer {
  background-color: #900;
  color: white;
  text-align: center;
  padding: 1em 0;
  position: fixed;
  width: 100%;
  bottom: 0;
}
