* {
    margin: 0;
    padding: 0;
    user-select: none;
}

body {
    background-color: black;
    color: white;
    font-family: "Lato", sans-serif;
    /* overflow: hidden; */
}

.border {
    border: 2px solid rgb(29, 29, 29);
    margin: 4px;
}

.justify {
    justify-content: center;
}

.align {
    align-items: center;
}

.flex {
    display: flex;
}
h2{
    font-weight: 800;
}
.bg-gray {
    background-color: rgb(18,18,18);
}

.border-radius {
    border-radius: 7px;
}

.transform {
    transition: transform 0.1s ease ;
    will-change: transform;
}
.transform:hover{
    transform: scale(1.1);
}
.transform:active{
    transform: scale(0.9);
}
.hover:hover {
    cursor: pointer;
    background-color: rgb(34, 34, 34);
}

.m1 {
    margin: 5px;
}

.p1 {
    padding: 10px;
}

.texttransform {
    transition: font-size ease-in-out .1s;
}
p{
    color: #b1b1b1;
    font-size: 13px;
}
/* scroll bar css */
/* For WebKit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent; /* Or a subtle color like #121212 */
}

::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
::selection{
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
}
