.contenedor-menu button {
  outline: 0;
  grid-gap: 8px;
  align-items: center;
  background: 0 0;
  background-color: whitesmoke;
  border: 1px solid #000;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 20px;
  gap: 8px;
  justify-content: center;
  line-height: 1.5;
  overflow: hidden;
  padding: 12px 16px;
  text-decoration: none;
  text-overflow: ellipsis;
  transition: all 0.14s ease-out;
  white-space: nowrap;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  
}
.contenedor-menu button:hover {
  box-shadow: 4px 4px 0 #000;
  transform: translate(-4px, -4px);
}
.contenedor-menu button:focus-visible {
  outline-offset: 1px;
}
