.menu {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  position: fixed;
}

.menu-list {
  background-color: white;
  border-radius: 5px;
  border: 1px solid pray;
  box-shadow: gray 0 0 0.25in;
}

.menu-list li {
  list-style-type: none;
}

.menu-list button {
  background-color: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 5px;
  font-size: 16px;
  padding: 0.5em 1em;
}

.menu-list button:active {
  background-color: rgba(0, 0, 0, 0.1);
}