*{
    box-sizing: border-box;
    margin: 10px auto;
}

body{
    display: flex;
    flex-wrap: nowrap

}

div{
    width: 32%;
}

img{
    width: 100%;
}
p{
    line-height:25px;
    justify-content: center;
}
p:last-of-type{
    color: blue;
}

@media screen and (max-width: 768px){

    body{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    

    div{
        width: 50%;
    }
    div:last-of-type{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    img[alt=google3]{
        width: 60%;
    }
    section{
        width: 40%;
    }
}

@media screen and (max-width: 500px){

    body{
        display: flex;
        flex-wrap: wrap;
         justify-content: space-between;
    }

    div{
        width: 100%;
        font-size: 4vw;
    
}
    
}
@media screen and (min-width: 1000px){

    body{
        display: flex;
        flex-wrap: wrap;
         justify-content: space-between;
    }

    div{
        width: 33%;
        font-size: 1.5vw;
    
}
    
}