.dropbtn,.dropup-content {
  display: none;
}

@media (min-width:550px){
  
.dropbtn {
  display: block;
  background-color: slategray;
  color: white;
  font-size: 3.5em;
  position: fixed;
  right: 0;
  bottom: 0;
  margin-right: 50px;
  margin-bottom: 20px;
  border-radius: 50px;
  height: 100px;
  width: 100px;
  border-style: groove dotted;
  border-width: thick;
  font-family:"evensong-hollow";
  z-index: 999;
  cursor: pointer;
}


.dropup {
  position: relative;
  display: inline-block;
  position: fixed;
  right: 0;
  bottom: 0;
}


.dropup-content {
  display: none;
  position: absolute;
  bottom: 50px;
  background-color: #f1f1f1;
  width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 99;
  position: fixed;
  right: 0;
  bottom: 0;
  margin-right: 80px;
  margin-bottom: 100px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}


.dropup-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family:"BauhausStd-Demi";
}


.dropup-content a:hover {
  background-color: lightgray;
  border-radius: 10px;
}


.dropup:hover .dropup-content {
  display: block;
}

.dropup:hover .dropbtn {
  background-color: lightslategray;
  color: black;
}
  
}

.menu{
  display: grid;
  grid-template-columns: auto auto;
  padding: 5px;
  grid-gap: 10px;
  margin-bottom: 5px;
  color: white;
}

.button{
  background-color: lightgray;
  padding: 20px;
  font-size: 1.2em;
  text-align: center;
  font-family:"BauhausStd-Demi";
  color: white;
  text-decoration: none;
  text-decoration-color: white;
}