#footer {
    z-index: 2;
    
    #copyright {
        background: none;
    }
}

main {
    margin-top: 0;
}

body {
    position: relative;
    
    height: auto;
    
    background-image: url("../images/about/about_bg.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    background-color: black;
}

body::after {
    content: "";
    position: absolute;
    
    bottom: 0;
    
    height: 20%;
    width: 100%;
    
    backdrop-filter: blur(4px);
    mask: linear-gradient(to top, black, transparent);
}

#content_container {
    display: grid;
    grid-template-columns: 3fr 4fr;
    
    width: 100%;
    
    padding: 12em 10em 6em 10em;
    box-sizing: border-box;
}

#content_container > * {
    min-height: 0;
    min-width: 0;
}

#text_container {
    z-index: 2;
}

#text_body_container {
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    border: 1px solid white;
    
    box-shadow: 6px 6px 14px black;
    
    p {
        margin: 2em;
        margin-top: 1.5em;
        margin-bottom: 1.5em;
        
        font-size: 1.5em;
        font-weight: 200;
        font-family: Lexend, sans-serif;
        
        b {
            font-weight: 600;
        }
    }
    
    a {
        color: inherit;
    }
}

@media (max-aspect-ratio: 1/1) {
    body {
        background-position: center right 45%;
    }
    
    #content_container{
        grid-template-columns: 1fr;
        
        padding: 55vh 2em 4em 2em;
    }
}