@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

*{
    font-family: 'Poppins', sans-serif;
}

body{
    background: rgb(147,17,72);
        background: -moz-linear-gradient(36deg, rgba(147,17,72,1) 0%, rgba(121,9,32,1) 35%, rgba(255,0,0,1) 100%);
        background: -webkit-linear-gradient(36deg, rgba(147,17,72,1) 0%, rgba(121,9,32,1) 35%, rgba(255,0,0,1) 100%);
        background: linear-gradient(36deg, rgba(147,17,72,1) 0%, rgba(121,9,32,1) 35%, rgba(255,0,0,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#931148",endColorstr="#ff0000",GradientType=1);
    overflow-x: hidden; 
}



::-webkit-scrollbar {
    background-color: transparent;
    width: 7px;
  }
::-webkit-scrollbar-track {
    background-color: transparent;
  }
::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: #fff2;
    background-clip: content-box;
}


  button{
    border:1px solid rgb(255, 255, 255);
    padding:10px 20px;
    border-radius: 60px !important;
    background-color: transparent;
    color:#fff;
    transition-duration: 0.4s;
}

button:hover{
  transform: scale(0.9);
}