#repo-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.repo-list-container {
    width: 100%;
    align-items: center;
    justify-content: center;
}
.repo-box {
    border-radius: 25px;
    margin: 5px !important;
    padding: 5px !important;
    backdrop-filter: saturate(100%) blur(5px) !important; 
    -webkit-backdrop-filter: saturate(100%) blur(5px) !important;
	background-color: rgba(77, 62, 87, 0.5);
    filter: drop-shadow(rgba(21, 6, 26, 0.585) 1rem 1rem 10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 300px;
    height: 90%;
    max-height: 1000px;
    overflow: hidden;
    transition: background-color 0.5s;
}
.repo-box:hover {
    background-color: rgba(82, 69, 90, 0.6);
}
.repo-box a {
    text-decoration: none;
    color: #f5f5f5;
    border-radius: 25px;
    transition: background-color 0.5s;
}
.repo-box a:hover {
    background-color: rgba(196, 147, 219, 0.25);
}
.repo-name {
    font-size: 1.2em;
    font-weight: bold;
}
.repo-description {
    margin-top: 10px;
    font-size: 1rem !important;
    color: #eeeeee;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-left: 25px !important;
    margin-right: 25px !important;
    min-height: 2.6rem;
}
.repo-stats {
    margin-top: 10px;
    font-size: 0.75em;
    color: #a1a1a1;
}