@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Hubballi&family=Indie+Flower&family=League+Spartan:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300;400;500;600;700&family=Shippori+Antique+B1&family=Shizuru&display=swap');
/* font-family: 'Montserrat', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* 

--main: #FFA800;
    --background: #111111;
    --second: #383838;
    --text: rgb(189, 189, 189);
    --subtext: rgb(184, 184, 184);
    333333
    */


:root {
    --main: #44346f;
    --tess: #44346f;
    --main-trans: rgba(68, 52, 111, 0.267);
    --background: #010100;
    --second: rgb(17, 19, 18);
    --third: #1e2120;
    --grey: rgba(128, 128, 128, 0.253);
    --hover1: #272727;
    --text: rgb(255, 255, 255);
    --subtext: rgb(184, 184, 184);

    
}



body {
    background-color:  var(--background);
    transition: 0.3s all ease-in-out;
}



* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    border: none;
    border-radius: 0;
    outline: none;
    color: var(--text);
    
    
}


/* width */
::-webkit-scrollbar {
    width: 1px;
  }

::-webkit-scrollbar:hover {
    width: 10px;
}
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--third);
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background:var(--main);
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(41, 41, 41);
  }
