ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  top: 0;
}

ol {
  padding-left: 100px;
  max-width: 700px;
  position: relative;
  display: grid;
  justify-content: center;
  float: center;
  padding-bottom: 20px;

}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover {
  background-color: #111;
}

.active {
  background-color: #04AA6D;
}

.links-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topnav {
  overflow: hidden;
  background-color: grey;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}



.vertical-menu {
  width: 200px;
  /* Set a width if you like */
}

.vertical-menu a {
  background-color: #eee;
  /* Grey background color */
  color: black;
  /* Black text color */
  display: block;
  /* Make the links appear below each other */
  padding: 12px;
  /* Add some padding */
  text-decoration: none;
  /* Remove underline from links */
  width: 500px;

}

.vertical-menu a:hover {
  background-color: #ccc;
  /* Dark grey background on mouse-over */
}

.vertical-menu a.active {
  background-color: #04AA6D;
  /* Add a green color to the "active/current" link */
  color: white;
}

#myicon {
  max-width: 40px;
  padding-left: 20px;
}

#myicon:hover {
  -ms-transform: scale(1.2);
  /* IE 9 */
  -webkit-transform: scale(1.2);
  /* Safari 3-8 */
  transform: scale(1.2);
}