
.projetos {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    list-style: none;
}

.projetos li {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin: 1rem 0;
}

.projetos li .title {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    margin-bottom: .5rem;
}

.projetos li .title.github::before {
    content: "";
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-repeat: no-repeat; 
    background-size: contain;
    background-image: url("/assets/img/icons/github.svg");
    margin-right: 0.5rem;
}