.projetos {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
    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.5rem;
    font-weight: 700;
    margin: 0;
    margin-bottom: .5rem;
}

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

.projetos li .title.vercel::before {
    content: '';
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/icons/vercel.svg');
    margin-right: .5rem;
}

.projetos li .title.doador-rp::before {
    content: '';
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../img/icons/logo-doador-rp.png');
    margin-right: .5rem;
}

.projetos li a {
    color: #fff;
    text-decoration: none;
}

.projetos li a:hover {
    color: #fff;
    text-decoration: underline;
}

a {
    background-color: #ffffff00;
}