.border{
    border: 2px solid  rgb(255, 8, 8);
    margin: 1px;
}

.outline {
    -webkit-text-stroke: 0.5px white;
    color: transparent;
    
}

.grad {
    background:linear-gradient(83deg, #e000ff, #ff6f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    textFillcolor: transparent;

}





.flex{
    display: flex;
}

.justify-center{
    justify-content: center;
}

.items-center{
    align-items: center;
}

.bg-black{
    background-color: black;
    color: white;

}

.bg-grey{
    background-color: #1c1c1c;
    color: white;
}

.invert{
    filter: invert(1);
}

.round{
    border-radius: 10px;
}

.m-1{
    margin: 10px;
}

.p-1{
    padding: 15px;
}


/* For Webkit browsers (e.g., Chrome, Safari) */
::-webkit-scrollbar {
    width: 12px;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #333; /* Dark color for the thumb */
    border-radius: 6px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: #222; /* Dark color for the track */
  }
  
  /* For Firefox */
  scrollbar-color: #333 #222; /* Dark color for the thumb and track in Firefox */
  