@media(min-width : 1024px){
    section {
        display : flex;
        padding-bottom: 50px;

    }

    #images {
        padding-left : 20px;
    }

    #text {
        padding: 10px;
        margin-left: 10px;
        width: 100%;
    }
}

@media(max-width : 1023px){
    section {
        display : flex;
        flex-direction: column;
        padding-bottom: 50px;
    }

    #images {
        padding-left : 20px;
    }

    #text {
        margin-top : 20px;
        margin-bottom : 20px;
        width: 100%;
        font-size: small;
        text-align: center;
    }

    #text h1 {
        margin-bottom : 20px;
    }


}