::-webkit-scrollbar {width: 8px;}
::-webkit-scrollbar-track {background: transparent; }
::-webkit-scrollbar-thumb:hover {background: rgb(35, 35, 35); }

::-webkit-scrollbar-thumb {
    background: rgb(0, 0, 0); 
    border-radius: 10px;
}

html {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.8) transparent;
}

.title {
    transition: opacity 0.5s ease-in-out;
    display: inline-block;
}
.note{
    left: 50%;
    bottom: 10px;
    transform: translate(-50%,0);
}

.background-dot-mask {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background-image: radial-gradient(#232323 1px, transparent 1px);
    background-size: 16px 16px;
    -webkit-mask-image: radial-gradient(
        ellipse 50% 50% at 50% 50%,
        #000 60%,
        transparent 100%
    );
    mask-image: radial-gradient(
        ellipse 50% 50% at 50% 50%,
        #000 60%,
        transparent 100%
    );
    z-index: 0;
    overflow: hidden;
    transition: 0.3s;
}
.background-grid {
    position: fixed;
    inset: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to right, #80808012 1px, transparent 1px),
      linear-gradient(to bottom, #80808012 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: -5;
}