#button1 {
  display: table;
  margin-left: auto;
  margin-right: auto;

  position: relative;
  padding: 15px 40px;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(to right, rgb(255, 76, 76) 15.05%, rgb(207, 36, 36) 102.84%);
  z-index: 1;
  transition: all 0.3s ease;


  &::before,
  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: rgba(255, 76, 76, 0.6);
    z-index: -1;
    animation: ripple-wave1 2s infinite;
  }


  &::after {
    animation-delay: 1s;
  }
}

@keyframes ripple-wave1 {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

#button1:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(207, 36, 36, 0.4);
}