.historia{
    background-color: #FDDEF1;
    width: 100%;
}

.historia-container{
    display: flex;
    flex-direction: column;
   
    gap: 2rem;
    padding: 0;
}

.historia-imagen{
    background-image: url(../../img/historia/cuerdas.png);
    background-position: top right;
    background-repeat: repeat-x;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 100px;
}

.historia-imagen img{
    width: 150px;
}



.historia-texto{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-align: center;
}

.historia-texto h2{
    color: #FA54AE;
    font-weight: 700;
}

.historia-texto p{
    color: #180270;
    font-weight: 400;
}

@media screen and (min-width: 768px) {
    .historia-container{
        flex-direction: row;
        
    }

    .historia-imagen{
        flex: 1;
    }

    .historia-texto{
        flex: 1;
    }
}