::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    opacity: 0;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: rgba(127, 127, 127, 0.6);
}

::-webkit-scrollbar-thumb:horizontal:hover {
    background-color: rgb(110, 110, 110);
}

::-webkit-scrollbar-thumb:vertical:hover {
    background-color: rgb(110, 110, 110);
}

::-webkit-scrollbar-thumb:vertical:active {
    background: rgba(95, 91, 91, 1);
}

::-webkit-scrollbar-corner {
    background: none;
}

html {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    color: black;
    background-color: white;
}

.panel {
    background-color: #a0a0a05e;
    text-align: center;
}

.panel img {
    border-radius: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 256px;
    max-height: 256px;
    width: 80%;
    height: 80%;
}

.buymeacoffe_banner img {
    border-radius: 0%;
    opacity: 0.7;
}

#links {
    flex-wrap: wrap;
    flex-direction: row;
    display: flex;
    justify-content: center;
}

#links a,
.buymeacoffe_banner {
    width: auto;
    margin: 10px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    opacity: 0.7;
}

#links img {
    width: 50px;
    height: 50px;
}

#links a:hover,
#links a:active,
.buymeacoffe_banner img:hover {
    opacity: 1;
}

.project_container {
    border: solid 0.2px rgba(128, 128, 128, 0.2);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    padding: 10px;
    height: 0%;
    width: 100%;
    margin: 10px;
}

.project_container a {
    width: 64px;
    height: 64px;
}

.project_container p {
    font-size: 14px;
}

.project_logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 64px;
    height: 64px;
    border-radius: 4px;
}

.project_logo_link {
    margin-left: auto;
    margin-right: auto;
    color: inherit;
}

.project_container a:hover,
.project_container a:active {
    color: inherit;
    text-decoration: underline;
}

.project_title {
    height: 7px;
}

.project_description {
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    opacity: 0.6;
    -webkit-box-orient: vertical;
}

.project_screenshot {
    display: initial;
    margin-left: auto;
    margin-right: auto;
    margin-top: -20px;
    width: 100%;
    height: 50%;
    border-radius: 10px;
}

.attribution {
    font-size: 13px;
    opacity: 0.8;
}

.attribution:hover {
    opacity: 1;
}

@media screen and (min-width:768px) {
    .panel {
        min-height: 100vh;
    }
}

@media screen and (min-width:1568px) {
    .project_container {
        width: 48%;
    }
}

@media screen and (prefers-color-scheme: dark) {
    body {
        color: white;
        background-color: #1d1d1d;
    }

    .panel {
        background-color: #bdbdbd3b;
    }

    .text_link {
        color: #5f99f0
    }

    .text_link:hover {
        color: #e7e7e4;
        opacity: 1;
    }

    .text_link:visited {
        color: #d288fd;
    }
}