<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.portrait-bg {
    background-repeat: no-repeat;
    z-index: 0;
    object-fit: cover;
}

.about-me .container {
    color: var(--text);
    position: relative;
    padding: 8rem;
}

.about-me img {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    object-position: 50% 16%;
    opacity: 0.8;
}

.about-me .overlay {
    background-color: var(--main-bg);
}
@media screen and (max-width:1280px) {
    .about-me .container {
        position: relative;
        padding: 3rem;
    }
    
}
@media screen and (max-width: 1024px) {
    .about-me .overlay {
        background-color: var(--primary);    
    }
    .about-me .container {
        color: var(--dark-text);
    }
}


</pre></body></html>