body {
    background-color: bisque;
}
#container {
    min-height: 80vh;
}
#content {
    background-color: #aaa;
    min-height: 80vh;
    padding: 1em 1em 1em 1em;
    font-family: math;
}
#content img {
    border: #333;
    border-width: medium;
    border-style: solid;
    margin: auto;
}

#content p {
    margin-top: 0px;
}
#content h1 {
    margin-top: 0px;
    text-align: center;
    text-shadow: 5px 3px 3px gray;
}
#cover {
    margin-left: auto;
    margin-right: auto;
    max-width: 500px;
}
#cover img {
    max-width: 500px;
    min-width: 100px;
}
#footer {
    background-color: #333;
    border-radius: 0px 0px 10px 10px;
    height: 40px;
    margin: 0px;
    padding-top: 5px;
}
#footer p {
    font-size: 13px;
    font-family: sans-serif;
    color: #FFF;
    text-align: center;
}
#footer a:-webkit-any-link{
    color: mediumaquamarine;
}
#nav ul.top {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  background-color: #333;
  border-radius: 10px 10px 0px 0px;
}

#nav li {
  float: left;
}

#nav li#right {
  float: right;
}

#nav li#right a {
  font-size: medium;
}

#nav li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: large;
  font-family: monospace;
}

/* Change the link color to #111 (black) on hover */
#nav li a.hover:hover {
  background-color: #111;
}
#nav li.dropdown {
  display: inline-block;
}

#nav li.dropdown:hover {
  background-color: #111;
}

#nav .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

#nav .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

#nav .dropdown-content a:hover {
  background-color: #ddd;
}

#nav .dropdown:hover .dropdown-content {
  display: block;
}
