.scroll{
    opacity: 0;
    filter: blur(10px);
    transform: translatex(-100%);
    transition: opacity 1s ease-in-out;
}
.show{
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}
@media(prefers-reduced-motion){
    .scroll{
        transition: none;
    }
}

/********************** Button Top *******************************/
#myBtn {
    position: fixed;
    bottom: 60px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    padding: 10px;
    padding-bottom: 2;
  }
  .button-top svg{
    fill: white;
  }
  #myBtn:hover {
    background-color: #00ffaa76;
    border-radius: 6px;
  }
  