@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz@1,6..96&display=swap');

*{
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: #070709 !important;
    overflow-x: hidden; 
}

.text-rel{
    font-family: 'Bodoni Moda', serif;

}

.text-white-dg{
    background: rgb(82,81,81);
background: linear-gradient(318deg, rgba(82,81,81,1) 0%, rgba(255,255,255,1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent; 

}

::-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;
}


html {
    cursor: none;

    scroll-behavior: smooth;
  }
  
  
  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 2.5rem;
    height: 2.5rem;
    z-index: 99999;
    pointer-events: none;
  }
  .cursor div {
    position: absolute;
    display: grid;
    place-items: center;
  }
  .cursor div div {
    border: 1px solid #fff;
    border-radius: 50%;
    animation: pulse 2.5s linear infinite;
    
  }
  .cursor div:nth-child(1),
  .cursor div:nth-child(2) {
    width: 100%;
    height: 100%;
  }
  .cursor div:nth-child(1) {
    transition: transform 0.2s ease-out;
  }
  .cursor div:nth-child(2) {
    transition: transform 0.1s ease-out;
  }
  .cursor div:nth-child(2) div {
    background: #fff;
    border-radius: 50%;
    width: 4px;
    height: 4px;
  }

  button{
    border:0.1px solid rgba(255, 255, 255, 0.12);
    padding:10px 20px;
    border-radius: 60px !important;
    background-color: transparent;
    color:#fff;
}