div.titulo-1 {
    color: blue;
    text-align: center;
    border: black solid 1px;
    
}

img {
    width: 550px;
    border: black solid 2px;
    justify-content: center;
}


.container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.text {
    display: flex;
    gap: 10px;
    text-align: center;
}

.card-1,
.card-2 {
    border: blue solid 2px;
    justify-content: center;
    padding: 15px;
    align-items: center;
    max-width: 90vw;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card p {
    max-width: 600px;
}

@media (max-width: 600px) {
    img {
        width: 80vw;
    }

}