

.flex{
    display: flex;
}

.justify-content {
    justify-content: center;
}

.align-items{
    align-items: center;
}

.bg-black{
    background-color: black;
    color: white;
}

.invert{
    filter: invert(1)
}

.bg-grey{
    background-color: #1f1f1f;
}

.rounded{
    border-radius: 7px;
}

.m1{
    margin: 5px;
}

.p1{
    padding: 10px
}


::-webkit-scrollbar {
    width: 10px;
}


::-webkit-scrollbar-track {
    background: #1e1e1e;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 10px;
    border: 2px solid #1e1e1e; 
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #444 #1e1e1e;
}
