.button2 {
    background-color: rgb(97, 253, 25); 
    color: black; 
    border: 0px solid darkgreen;
  }
  
  .button2:hover {
    background-color: darkgreen;
    color: rgb(255, 248, 248);
  }
  .button1 {
    
    background-color: gray; /* Green */
    border: 0;
    color: rgb(8, 8, 8);
    padding: 11px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    font-size: 20px;
    margin: 0px 0px;
    transition-duration: 0.4s;
    cursor: pointer;
  }

  .Btn {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    /* overflow: hidden; */
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s;
  }
  
  .svgContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(0px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid rgba(156, 156, 156, 0.466);
  }
  
  .BG {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #7289da;
    z-index: -1;
    border-radius: 10px;
    pointer-events: none;
    transition: all 0.3s;
  }
  
  .Btn:hover .BG {
    transform: rotate(35deg);
    transform-origin: bottom;
  }
  
  .Btn:hover .svgContainer {
    border: 1px solid rgba(206, 206, 206, 0.466);
    background-color: rgba(214, 214, 214, 0.466);
    backdrop-filter: blur(4px);
  }
  button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
    color: white;
    text-shadow: 2px 2px #000;
    text-transform: uppercase;
    border: solid 2px #fff;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 17px;
    background-color: rgba(88, 101, 242, 1);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all .5s ease;
  }
  
  button:active {
    transform: scale(.9);
    transition: all 100ms ease;
  }
  
  button svg {
    transition: all .5s ease;
    z-index: 2;
  }
  
  .play {
    transition: all .5s ease;
    transition-delay: 300ms;
  }
  
  button:hover svg {
    transform: scale(1.3) translate(-40%);
  }
  
  .now {
    position: absolute;
    left: 0;
    transform: translateX(290%);
    transition: all .5s ease;
    z-index: 2;
  }
  
  button:hover .now {
    transform: translateX(90%);
    transition-delay: 300ms;
  }
  
  button:hover .play {
    transform: translateX(200%);
    transition-delay: 300ms;
  }
  
  
  