body {
  margin: 0;
  padding: 0;
}

.dropdown {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
}

.menu {
  width: 25px;
  height: 25px;
  outline: 3px solid white;
  border-radius: 7px;
  background: 
    linear-gradient(
      white 0px 4px,
      transparent 4px 10px,
      white 10px 14px,
      transparent 14px 20px,
      white 20px 24px
    ) 8px 10px / 30px 24px no-repeat,
    black;
  padding: 10px;
  font-family: Arial, sans-serif;
  z-index: 1000;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0px;
  top: 45px;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: black;
  color: white;
  text-align: center;
  padding: 5px;
}