body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.repo-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 280px;
    padding: 15px;
    text-align: center;
    margin: 15px;
}

.repo-card h1 {
    font-size: 20px;
    color: #333;
    margin: 0 0 8px 0;
}

.repo-image {
    border-radius: 50%;
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
    border: 3px solid #d0d0d0;
}

.repo-stats {
    display: flex;
    justify-content: space-around;
    margin: 8px 0;
}

.repo-stat svg {
    margin: 4px;
    color: #333;
}

.repo-stat span {
    font-size: 11px;
}

.repo-stat {
    color: #777;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 4px;
}

.contributors {
    margin-top: 16px;
}

.contributors-container {
    position: relative;
    height: 40px;
}

.contributor-avatar {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    position: absolute;
    z-index: 1;
}

/* Animations */

.loader
{
    animation: loading-animation 1s linear infinite alternate;
    width: 90px;
    height: 90px;

}

.loader-text {
    width: 100%;
    height: 18px;
    border-radius: 10px;
}

@keyframes loading-animation {
    0% { 
        background-color: #f1f1f1;
     }
    100% { 
        background-color: #b6b6b6;
     }
}