
.btn-catalogue-link {
  box-sizing: border-box;
  appearance: none;
  background-color: transparent;
  border: 2px solid #e74c3c;
  border-radius: 0.6em;
  color: #e74c3c;
  cursor: pointer;
  display: flex;
  align-self: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  margin: 20px auto;
  padding: 1.2em 2.8em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

.btn-catalogue-link:hover{
    color: #fff;
    outline:0;
}

.btn-catalogue-link:focus{
    color:white;
    outline: 0;
}

.btn-catalogue-link__shape {
    transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}

.btn-catalogue-link__shape:hover {
    box-shadow: 0 0 40px 40px #e74c3c inset;
}