body {
    background: linear-gradient(-45deg, rgb(255,255,255), rgb(242, 218, 220), rgb(255, 179, 204), rgb(255,197,230), rgb(255, 128, 170));
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
  }

  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .dancing-script {
    font-family: "Dancing Script", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 85px;
    color: rgb(255, 26, 102);
  }
  .button {
    top: 80%;
    left: 35%;
    margin: 10px;
    padding: 15px 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: block;
    border: 0px;
    font-weight: 700;
    box-shadow: 0px 0px 14px -7px #ff66a3;
    background-image: linear-gradient(45deg, #ff0066 0%, #ff66a3  51%, #ff0066  100%);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;

    position: absolute;
  }
  
  .button:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
  }
  
  .button:active {
    transform: scale(0.95);
  }
  .button-no{
    top: 80%;
    left: 50%;
  }
  .heart {
    color: #fff;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px #000;
  }

  .heart,
  .heart .inner {
    animation-iteration-count: infinite;
    animation-play-state: running;
  }
  @keyframes hearts-fall {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(110vh);
    }
  }
  @keyframes hearts-shake {
    0%,
    100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(80px);
    }
  }
  .heart {
    position: fixed;
    top: -10%;
    z-index: 9999;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
    pointer-events: none;
    animation-name: hearts-shake;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    font-size: 25px;
  }
  .heart .inner {
    animation-duration: 10s;
    animation-name: hearts-fall;
    animation-timing-function: linear;
  }
  .heart:nth-of-type(0) {
    left: 1%;
    animation-delay: 0s;
  }
  .heart:nth-of-type(0) .inner {
    animation-delay: 0s;
  }
  .heart:first-of-type {
    left: 10%;
    animation-delay: 1s;
  }
  .heart:first-of-type .inner,
  .heart:nth-of-type(8) .inner {
    animation-delay: 1s;
  }
  .heart:nth-of-type(2) {
    left: 20%;
    animation-delay: 0.5s;
  }
  .heart:nth-of-type(2) .inner,
  .heart:nth-of-type(6) .inner {
    animation-delay: 6s;
  }
  .heart:nth-of-type(3) {
    left: 30%;
    animation-delay: 2s;
  }
  .heart:nth-of-type(11) .inner,
  .heart:nth-of-type(3) .inner {
    animation-delay: 4s;
  }
  .heart:nth-of-type(4) {
    left: 40%;
    animation-delay: 2s;
  }
  .heart:nth-of-type(10) .inner,
  .heart:nth-of-type(4) .inner {
    animation-delay: 2s;
  }
  .heart:nth-of-type(5) {
    left: 50%;
    animation-delay: 3s;
  }
  .heart:nth-of-type(5) .inner {
    animation-delay: 8s;
  }
  .heart:nth-of-type(6) {
    left: 60%;
    animation-delay: 2s;
  }
  .heart:nth-of-type(7) {
    left: 70%;
    animation-delay: 1s;
  }
  .heart:nth-of-type(7) .inner {
    animation-delay: 2.5s;
  }
  .heart:nth-of-type(8) {
    left: 80%;
    animation-delay: 0s;
  }
  .heart:nth-of-type(9) {
    left: 90%;
    animation-delay: 1.5s;
  }
  .heart:nth-of-type(9) .inner {
    animation-delay: 3s;
  }
  .heart:nth-of-type(10) {
    left: 25%;
    animation-delay: 0s;
  }
  .heart:nth-of-type(11) {
    left: 65%;
    animation-delay: 2.5s;
  }