div.extra {
  left:540px; <!-- for div.a -->

 }



div.a {
  -ms-transform: rotate(330deg); /* IE 9 */
  transform: rotate(330deg);
  position:absolute;
  top:45px;
}

body {
  background-image: url('/img/stucco.jpg');
  background-attachment: fixed;
}

 

.dropbtn {
  position: fixed;
  right: 0;
  top: 50px;
  width: 8em;
  margin: -2.5em 0 0 0;
  z-index: 5;
  background: hsla(220, 90%, 40%, 0.9);
  color: white;
  font-weight: bold;
  font-size: large;
  text-align: center;
  border: solid hsla(80, 90%, 40%, 0.5);
  border-right: none;
  padding: 0.5em 0.5em 0.5em 0.5em;
  box-shadow: 0 1px 3px black;
  border-radius: 3em 0.5em 0.5em 3em;
}

.dropbtn:hover, .dropbtn:focus {
  background: hsla(220, 90%, 40%, 0.9);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: fixed;
  right: 0;
  top: 50px;
  background: hsla(220, 90%, 40%, 0.9);
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: black}

.show {display:block;}
