#projetos {
    height: 100%;
    background-color: black;
    color: white;
    padding-top: 93px;
}

#container-projetos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

#titulo-page-projeto {
    color: white;
    font-size: 3em;
    margin-bottom: 10px;
    text-align: center;
}

.card-projeto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    margin: 20px;
    padding: 15px;
    border-radius: 5px;
    color: white;
}

.div-img-projeto {
    width: 680px;
}

.div-img-projeto > img {
    width: 100%;
    border-radius: 7px;
}

.div-infos-projeto {
    margin: 10px;
}

@media only screen and (max-width: 1110px) {
    .div-img-projeto > img {
        width: 300px;
        border-radius: 7px;
    }

    .div-img-projeto {
        width: 300px;
        text-align: center;
    }

    #container-projetos {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .card-projeto {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        color: white;
        width: 350px;
    }
}