* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background: rgb(44, 44, 44);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rebeccapurple;
}

::-webkit-scrollbar-corner {
    /* empty */
    /* without this, bottom-right corner will appear white */
}

body {
    display: flex;
    justify-content: center;
    padding: 1rem;

    .bg {
        background-image: url("./p/bg.webp");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        bottom: 0;
        z-index: -1;
        overflow: hidden;
    }

    & .panel {
        width: 336px;
        height: fit-content;
        background: #1e1e1e82;
        border-radius: 8px;
        border: 1px solid #4b4b4b;
        display: flex;
        flex-direction: column;
        padding: 4px;
        font-family: Inter;

        & a {
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            border-radius: 4px;
            padding: 2px;

            &:hover {
                background: #383737;
            }

            & span {
                padding-left: 4px;
            }
        }

        h3 {
            color: #fff;
            margin-top: 10px;
            padding-inline: 6px;
        }
    }
}