aside.menu {
  display: flex;
  align-items: start;
  position: fixed;
  z-index: 100000;
  right: 0;
  top: 0;
  width: 80%;
  height: 100%;
  gap: 5px;
}

aside.menu .wrapper {
  background-color: rgba(42, 69, 89, 0.3);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(5px);
  width: 100%;
  height: 100%;
}

aside ul {
  list-style: none;
  margin: 5rem 2rem;
  line-height: 2;
}

aside button.close_button {
  padding-top: 10px;
}

aside a {
  display: block;
  padding: 10px 50px;
  text-decoration: none;
  color: white;
}

aside li.home {
  background-image: url(../images/home_icon.svg);
  background-position-x: 2px;
}

aside li.gallery {
  background-image: url(../images/gallery_icon.svg);
}

aside li.profile {
  background-image: url(../images/profile_icon.svg);
  background-position-x: 2px;
}

aside li {
  background-repeat: no-repeat;
  background-position: left center;
}