html {
   height: 100vh;
   margin: 0;
   padding: 0;
   background-image: linear-gradient(142deg, #462C7D 0%, #831C91 100%);
}

body {
    font-family: Tahoma, Verdana, sans-serif;
    /*min-height: 100%;*/
}

#top ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #333333;
  display: flex;
  justify-content: center;
  box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.20);
  border-radius: 10px;
}

#top ul li a, button {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
}

#top ul li a:hover:not(.active), button{
  background-color: #111111;
}

#top ul li a.active, button {
  background-color: #D552A3;
}
#top ul li a.hidden {
  color: #333333;
  background-color: #333333;
}
#top {
    height: 50px;
    padding: 5px;
    position: sticky;
    top: 9px;
}
#main {
    margin: 5%;
    margin-top: 2%;
    padding: 20px;
    background-color: #333333;;
    color: white;
    box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.20);
    border-radius: 10px;
}
h1 {
    color: #FF70BF;
}
#refresh {
  float: left;
}
#highest-id, #updateStatus {
  font-style: italic;
  color: rgba(255, 255, 255, 0.666);
}
#updateStatus {
  font-size: smaller;
  margin-top: 0;
}
footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   text-align: center;
   color: black;
   background-color: #333333;
}