@AjayKrishna55

Muhammad Zubair
@Mini-ElliotAll comments
- @Mini-Elliot
Good effort but you should give the value of media query like this
(max-width: 375px)
instead of:@media (maxwidth: 375px)
The CSS code you written for image resembles Sass nesting, but for standard CSS, you should not nest rules like that. Here's the corrected version:
css .image img { max-width: 450px; max-height: 750px; }
instead of:
.image img { .container { max-width: 450px; max-height: 750px; } }
Happy coding! 😄Marked as helpful