.comunidade{
    grid-column: span 2;
    display: flex;   
    flex-wrap: wrap; 
    justify-content: space-around;
}
.cartao__comunidade{
    width: 31rem;
    height: 25rem;
    background: rgba(0, 0, 0, 0.16);
    border-radius: 8px;
    transition: all .4s;
}
.linha{
    margin-bottom: 3rem;
}
.cartao__comunidade:hover{
    height: 27rem;
}
@media  screen and (max-width: 767px) {
    .cartao__comunidade{
        width: 90vw;
        max-width: 31rem;
        min-width: 22rem;
        height: auto;
        margin-bottom: 2px;
    }
}
.cartao__cor{
    width: 100%;
    height: 17.5em;
    background: #6BD1FF;
    border-radius: 8px;  
    display: flex;
    justify-content: center;
    align-items: center;
}


.cartao__cor--fundo{
    width: 90%;
    height: 85%;
    background-image: url(../assets/icons/bolinhas.png);
    background-color: #141414;
    background-repeat: no-repeat;
    background-position: 1rem 1rem;
    background-size: 40px;
    background-attachment: local;
    box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.24);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.cartao__pre{
    width: 100%;
    height: 85%;
    background: none;
    border-radius: 7px;
    white-space: pre-wrap;
    
}
.cartao__area-code{
    width: 100%;
    height: 90%;
    font-family: Roboto Mono;
    background-color: #141414;
    box-sizing: border-box;
    overflow-y: hidden;
    overflow-x: hidden;
}


.cartao__conteudo{
    width: 100%;
    height: 30%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 19px;
    box-sizing: border-box;
}
.cartao__conteudo-botoes{
    grid-column: span 4;
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    width: 100%;
    opacity: 0;
    transition: .8s;
}
.cartao__conteudo-botoes:hover{
    opacity: 100;
}


.projeto__titulo{
    font-size: 21px;
    font-weight: 700;
    grid-column: span 4;
}
.projeto__descricao{
    font-size: 16px;
    grid-column: span 4;
}
.botao__comentarios, .botao__curtidas{
    font-size: 16px;
    line-height: 24px;
    width: 58px;
    height: 40px;
    align-self: center;
    justify-content: flex-end;
}
.botao__comentarios i, .botao__curtidas i {
    margin-right: 0.5rem;
}

.botao__curtidas--like{
    color:#F65151;
}
.botao__comentarios:hover,.botao__curtidas:hover{
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
} 

.projeto__usuario{  
    grid-column: span 2;
    display: flex;
    align-self: center;
    justify-content: flex-end;
}

.projeto__usuario-botao{
    width: 106px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.projeto__usuario-botao:hover{
    width: 106px;
    height: 56px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}
.hide{
    display: none;
    transition: all .4s;
}