*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* The about sectoin or about page */

    #about {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    img{
        width: 100%;
    }

    #about .aboutImage {
        width: 35%;
    }

    #about .aboutImage .imageContainer {
        width: 100%;
    }

    #about .aboutImage .imageContainer img {
        width: 100%;
        object-fit: contain;
    }

    #about .aboutText{
        display: flex;
        flex-direction: column;
        gap: .8rem;
        width: 55%;
    }

    #about .aboutText h1{
        color: #fff;
        font-size: 3rem;
        font-weight: 700;
    }

    #about .aboutText h1 b{
        color: #EAB308;
        font-size: 3.4rem;
        font-weight: 700;
    }

    #about .aboutText p{
        color: #fff;
        font-size: 1.38rem;
    }

    #about .aboutText .contactMe{
        width: 30%;
        padding: .50rem;
        font-size: 1.2rem;
        margin-top: 1rem;
    }

    @media (max-width: 640px){
        #about {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column-reverse;
        }

        #about .aboutImage {
            width: 80%;
            padding: 1.5rem;
        }

        #about .aboutText{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: .8rem;
            width: 100%;
            padding: 1rem;
        }

        #about .aboutText h1{
            color: #fff;
            font-size: 2.5rem;
            font-weight: 700;
        }

        #about .aboutText h1 b{
            color: #EAB308;
            font-size: 2.8rem;
            font-weight: 700;
        }

        #about .aboutText p{
            color: #fff;
            font-size: 1.1rem;
        }

        #about .aboutText .contactMe{
            width: 30%;
            padding: .50rem;
            font-size: 1.2rem;
        }
    }

    @media (max-width: 414px) {
        #about{
            min-height: 85vh;
        }
        #about .aboutText .contactMe{
            width: 50%;
            padding: .50rem;
            font-size: 1.2rem;
        }

        #about .aboutImage {
            width: 95%;
            padding: 1.5rem;
        }
    }