.texto{
    text-align: center;
    margin-top: 40px;
    /* border: 3px solid black; */
}

.texto h2{
    font-weight: 300;
    font-size: 26px;
}
.texto h1{
    margin: 15px auto;
}
.texto p{
    width: 500px;
    margin: 0 auto 20px auto;
    font-size: 18px;

}



article{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    height: min-content;
    /* border: 2px solid black; */
    /* background-color: blueviolet; */
    padding: 20px;
    display: flex;
    gap: 10px;
}
.col{
    width: 100%;    
    /* background-color: cadetblue; */
    padding: 10px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
}
.col2{
    height: max-content;
}
picture{
    display: flex;
    justify-content: end;
}

.tarjeta{
    /* background-color: bisque; */
    padding: 15px;
    width: 100%;
    height:min-content;
    box-shadow: inset 2px 2px 2px 2px; 
}
.tarjeta > h3{
    font-weight: 300;
    margin-top: 10px;
}


@media (max-width:800px){
    article{
        flex-direction: column;
        height: fit-content;
        align-items: center;
    }
    .col{
        width: 300px;
    }
    .col2{
        gap: 20px;
    }
    .tarjeta2{
        margin-bottom: 20px;
    }

}



