Media queries allow you to apply different styles depending on the device's screen size. For instance, you can use the following CSS to adjust the font size and layout for mobile devices:
@media only screen and (max-width: 600px) { body { font-size: 16px; } .email-container { width: 100%; padding: 10px; } }