.button-more {
  padding: 1em 2em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 5px;
  text-transform: uppercase;
  cursor: pointer;
  color: rgb(54, 69, 79);
  transition: all 1000ms;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  outline: 2px solid rgb(85, 85, 85);
}

.button-more:hover {
  color: #ffffff;
  transform: scale(1.1);
  outline: 2px solid rgb(54, 69, 79);
  box-shadow: 4px 5px 17px -4px rgb(54, 69, 79);
}

.button-more::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  width: 0;
  height: 100%;
  background-color: rgb(54, 69, 79);
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
}

.button-more:hover::before {
  width: 250%;
}

@media (max-width: 592px) {
  .button-more {
    padding: 1em 2em;
    font-weight: bold;
    letter-spacing: 5px;
    font-size: 10px;
  }
}
