.black-text{
    font-weight:bold;
    font-size:25px;
    margin-top: 30px;
     }

.Btn {
    position: relative;
    width: 150px;
    height: 55px;
    border-radius: 45px;
    border: none;
    background-color: rgb(151, 95, 255);
    color:red;
    box-shadow: 0px 10px 10px rgb(56, 56, 56) inset,
    0px 5px 10px rgba(5, 5, 5, 0.212),
    0px -10px 10px rgb(56, 56, 56) inset;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size:30px;
    font-weight: bolder;
    margin-left: 80px;
    margin-bottom: 50px;
    margin-top: 20px;

}

  .Btn::before {
    width: 70%;
    height: 2px;
    position: absolute;
    background-color: rgba(250, 250, 250, 0.678);
    content: "";
    filter: blur(1px);
    top: 7px;
    border-radius: 50%;
  }

  .Btn::after {
    width: 70%;
    height: 2px;
    position: absolute;
    background-color: rgba(250, 250, 250, 0.137);
    content: "";
    filter: blur(1px);
    bottom: 7px;
    border-radius: 50%;
  }

  .Btn:hover {
    animation: jello-horizontal 0.9s both;
    -webkit-animation: jello-horizontal 0.9s both;
  }


  @media (max-width: 768px) {
    .black-text {
      font-size: 0.8em;
    }

    .Btn {
      width: 120px;
      height: 45px;
      font-size: 1em;
    }
  }

  @media (max-width: 480px) {
    .black-text {
      font-size: 0.8em;
    }

    .Btn {
      width: 100px;
      height: 40px;
      font-size: 0.9em;
    }
  }

  @keyframes jello-horizontal {
    0% {
      transform: scale3d(1, 1, 1);
    }

    30% {
      transform: scale3d(1.25, 0.75, 1);
    }

    40% {
      transform: scale3d(0.75, 1.25, 1);
    }

    50% {
      transform: scale3d(1.15, 0.85, 1);
    }

    65% {
      transform: scale3d(0.95, 1.05, 1);
    }

    75% {
      transform: scale3d(1.05, 0.95, 1);
    }

    100% {
      transform: scale3d(1, 1, 1);
    }
  }
