/* "Pop Out Menu" */

.popmenu {
  position: fixed;
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  z-index: 50;
}
.popmenu:hover {
  cursor: pointer;
}
.popmenu img {
  width: 3.5rem;
  height: 3.5rem;
}
#popper {
  display: none;
  flex-flow: column;
  justify-content: center;
  text-align: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
}
.set {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-flow: column;
  width: 100%;
  position: fixed;
  top: 0;
  background-color: rgba(20, 0, 50, .95);
  height: 100%;
  z-index: 5;
}
.set a {
  margin: auto 0.25rem;
  color: rgba(255, 255, 255, 1);
  background-color: rgba(0, 0, 0, .25);
  text-align: center;
  padding: .5rem 1rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 1.2rem%;
}
#popimage {
  padding: .2rem;
  margin: auto 0;
  width: 3.5rem;
  height: 3.5rem;
}
#popimage img {
  width: 100%;
  height: 100%;
}
#closer {
  width: 3.5rem;
  height: 3.5rem;
  margin: 3rem 0rem;
}
