The ABOUT US section looks fine on the iPad view but starts to become a bit squishy on a mobile:
To fix this issue, we will need to change the width value to 100% on the mobile breakpoint:
.about-us-title { width: 50%;}/* Small Mobile Styles */@media only screen and (max-width: 400px) { .about-us-title { width: 100%; }}.about-us-desc { width: 50%;}/* Small Mobile Styles */@media only screen and (max-width: 400px) { .about-us-desc { width: 100%; }}
Also, we will change the orientation of the flexbox by adding the CSS property, flex-orientation: column. By default, this ...