#portfolio #about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    .i-am {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 65vmin;

        .img {
            width: 40%;
            height: 100%;
            background-color: #353535;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            
            img { width: 100%; }
        }

        .description {
            width: 60%;
            padding: 3% 5%;

            h3 {
                font-weight: 500;
                margin-bottom: 2%;

                span {
                    font-family: Minecrafter;
                    font-size: 3vmin;
                }
            }

            p {
                font-size: 2vmin;
                margin-bottom: 2%;
                font-family: Poppins;
            }
        }
    }
}

