.loading-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.loading {
    position: absolute;
    width: 50px;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.display-picture {
    height: 300px;
    width: 300px;
    margin: 10px;
}
.display-picture img{
    border-radius: 50%;
}

.description {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    background: #e8eaed;
}
.description h2{
    font-size: 80px;
}
.bio{
    font-size: 20px;
    margin-bottom: 5px;
}
.description i{
    text-decoration: none;
    color: black;
    font-size: 35px;
    margin-bottom: 10px;
}

.projects{
    margin: 0 auto;
    width: 80%;
    
}
.projects h2{
    font-size: 40px;
    text-align: center;
    margin: 20px;
}
.projects a{
    text-decoration: none;
    color: black;
}

.repo-container{
    border: 1px solid #e8eaed;
    margin: 20px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 5px 5px  #e8eaed;
    overflow: auto;
}
.repo-container:hover{
    background-color: #e8eaed;
    cursor: pointer;
    box-shadow: none;
}
.repo-container h3{
    font-size: 25px;
    padding-bottom: 5px;
}
.project-description{
    font-size: 20px;
    padding-bottom: 5px;
}
.language{
    font-size: 16px;
    color: gray;
}
