
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.border{
    border: 1px solid rgb(239, 124, 124);
    margin: 3px;
}
.flex{
    display: flex;
}
.justify-center{
    justify-content: center;
}
.align-center{
    align-items: center;
}
.bgblack{
    background-color: black;
    color: white;
}
.invert{
 filter: invert(1);   
}
.bggray{
    background-color: rgb(17, 17, 17);
}
.rounded{
    border-radius: 7px;
}
.m1{
    margin: 5px;
}
.p1{
    padding: 10px;
}
.fontrobo{
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}
::-webkit-scrollbar {
    width: 1px;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color:#4B3F72; /* Dark color for the thumb */
    border-radius: 6px;
  }
  
  ::-webkit-scrollbar-track {
    background-color:#4B3F72; /* Dark color for the track */
  
  
  /* For Firefox */
  scrollbar-color:#4B3F72;} /* D}ark color for the thumb and track in Firefox */
