div#sobre-mi-container{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    z-index: 1;
}
div#sobre-mi-container div.texture{
    position: relative;
    display: flex;
    justify-content: space-between;
    background-color: #ffffff87;
    margin-top: 3rem;
}
div#sobre-mi-container div.texture::after{
    content:"";
    position: absolute;
    top: 0;
    left:0;
    right:0;
    bottom:0;
    background-image: url('../images/about-me-background.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    z-index: -1;
}
div#sobre-mi-container div.texture div.columns{
    display: flex;
    flex-direction: column;
    padding: var(--page-spacing);
}
div#sobre-mi-container div.texture div.columns:first-of-type{
    justify-content: space-between;
    flex-grow: 1;
    max-width: fit-content;
    margin-top: 0;
}
div#sobre-mi-container div.texture div.columns:last-of-type{
    justify-content: end;
    align-items: end;
}
div#sobre-mi-container div.texture div.columns:last-of-type img{
    width: 28rem;
    margin-top: 8rem;
}
div#sobre-mi-container div.texture div.columns h1{
    font-family: 'Simonetta-Regular';
    font-weight: 100;
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin: 0 0 2rem 0;
    padding: 0;
}
div#sobre-mi-container div.texture div.columns h1 b{
    font-family: 'Simonetta-Black';
    font-weight: 900;
}
div#sobre-mi-container div.texture div.columns p{
    font-family: 'lora';
    font-size: 1.3rem;
}
div#sobre-mi-container div.texture div.columns p:first-of-type{
    font-family: 'Simonetta-Regular';
    font-weight: 100;
    font-size: 1.5rem;
    text-align: center;
}

div#sobre-mi-container div.content{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 7rem;
    overflow-x: hidden;
}
div#sobre-mi-container div.content p{
    font-family: 'lora';
    font-size: 1.4rem;
    text-align: center;
}
div#sobre-mi-container div.content div.card-resize{
    width:100%;
}
div#sobre-mi-container div.content div.card-resize p{
    font-family: 'Simonetta-Italic';
}

@media only screen and (max-width: 768px) {
    div#sobre-mi-container div.texture{
        flex-direction: column;
    }
    div#sobre-mi-container div.texture div.columns:last-of-type img{
        margin: 0;
        width: 100%;
        height: auto;
    }
    div#sobre-mi-container div.texture::after {
        background-position: top 35% right;
    }
    div#sobre-mi-container div.content{
        padding: var(--page-spacing);
    }
    div#sobre-mi-container div.content p{
        font-size: 1.2rem;
    }
}