.effect {
  border-radius: 4px;
  background-color: #231717;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 20px;
  padding: 16px;
  width: 220px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 36px;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0,.7);
}

.effect.effect-5{
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.effect-5:after {
  content: '»';
  position: absolute;
  opacity: 0;  
  top: 14px;
  right: -20px;
  transition: 0.5s;
}

.effect-5:hover{
  padding-right: 24px;
  padding-left:8px;
  color: #fff;
}

.effect-5:hover:after {
  opacity: 1;
  right: 10px;
}
