@font-face {
    font-family: 'MyFont';
    src: url('/font/Best Friend.otf') format('opentype');


}

:root{
    --black:#202020;
    --primaryColor:#2E2F34;
    --green:#34E0A1;
    --white:#ffff;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'poppins',sans-serif;
}


/* Styling the scrollbar for Webkit browsers */
html::-webkit-scrollbar {
    width: 12px;  /* Vertical scrollbar width */
    height: 12px; /* Horizontal scrollbar height */
  }
  
  html::-webkit-scrollbar-thumb {
    background:var(--green); 
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(254, 255, 252, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  html::-webkit-scrollbar-thumb:hover {
    background:var(--green);
  }
  
  html::-webkit-scrollbar-track {
    background:var(--black); /* Background of the scrollbar track */
    border-radius: 10px;
  }
  
body{
    overflow-x:hidden;
    
} 
 p{
    font-size:16px;
 }


 /* fixed wahtasapp btn */
 .fixed-whatsappBtn {
    position: fixed;
    bottom: 70px;
    right: 0px;
    z-index: 1000;
}

.fixed-whatsappBtn img {
    width: 55px;
    height: 55px;
    padding:6px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.fixed-whatsappBtn img:hover {
    transform: scale(1.1);
}
