*{
    padding:0;
    margin:0;
    font-family: 'Roboto';
}
a{
    color: black;
    text-decoration: none;
}


.loadWrap{
        flex: auto;
        margin: auto;
        width: 50%;
        padding: 10px;
        
}

.loader {
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: auto;
    
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.upper-div{
    margin-top: 3%;
    margin-left: 10%;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 0;
}
.img-container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
#c-image{
    border-radius: 50%;
    max-width: 16rem;
    margin-right: 2rem;
    border: 0.5px solid gray;
}
.bio-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}
.d-flex{
    display: flex;
    align-items: center;
    justify-content: center;
}
.repo-lang{
    display: flex;
    align-items: center;
}
.btn{
    margin: 0 2px;
}
.container1{
    margin: 1rem 5rem;
    display: grid;
    justify-items: center;
    align-content: center;
    grid-template-columns: repeat(2,50%);
}
.page-link{
    cursor: pointer;
}
.repo{
    padding: 1rem;
    border: 1px solid black;
    min-width: 30rem;
    max-width: 30rem;
    min-height: 12rem;
    max-height: 12rem;
    margin: 1rem;
    overflow: scroll;
}
.inv{
    visibility: none;
}

#repos{
    display: none;
}
