section#about {
    width: 100%;
    
    background-color: var(--section-about-background);
    border: 4px solid var(--section-about-borders);

    h1 {
        text-align: center;
        color: white;
        font-family: 'Open Sans';
        font-size: 38px;
        padding: 100px 0 0 0;
    }

    #container {
        display: flex;
        justify-content: center;
        align-items: center;

        #content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;

            width: 1400px;
            margin: 50px 0 100px 0;
            p {
                display: flex;
                flex-direction: column;
                flex-grow: 1;
                flex-basis: 600px;

                padding: 0 25px;
                color: rgb(255,255,255,.85);
                font-size: 18px;
                font-family: 'Open Sans';
            }

            img {
                flex-basis: 600px;
                flex-grow: 1;
                height: 100%;
                width: 100px;
                border: 4px solid var(--section-about-borders);
                margin: 25px;
            }
        }
    }
}