.box-1 {
  position: absolute;
  top: 35px;
  left: 5px;  
}
.box-2 {
  position: absolute;
  top: 135px;
  left: 5px;
}
.box-3 {
  position: absolute;
  top: 235px;
  left: 5px;
}
.box-4 {
  position: absolute;
  top: 335px;
  left: 5px;
}
.box-5 {
  position: absolute;
  top: 435px;
  left: 5px;
}
.box-6 {
  position: absolute;
  top: 535px;
  left: 5px;
}
.box-7 {
  position: absolute;
  top: 635px;
  left: 5px;
}
.boton-1 {
    display: flex;
 }

.btn-1 {
  overflow: hidden;  
  position: relative;
  text-decoration: none;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 
    0 0 0 0 rgba(143, 64, 248, 0.5), 
    0 0 0 0 rgba(39, 200, 255, 0.5)
  ;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease
  ;
}

.btn-1::after {
  content: "";
  width: 400px;
  height: 400px;
  position: absolute;
  top: -50px;
  left: -100px;
  background-color: #ff3cac;
  background-image: linear-gradient(225deg,
    #27d86c 0%,
    #26caf8 50%,
    #c625d0 100%,
  );
  z-index: -100;
  transition: 
    transform 0.5s ease
  ;
}

.btn-1:hover {
  transform: translate(0, -6px);
  box-shadow: 
    10px -10px 25px 0 rgba(143, 64, 248, 0.5),
    -10px 10px 25px 0 rgba(39, 200, 255, 0.5)
  ;
}

.btn-1:hover::after {
  transform: rotate(150deg);
}

