How can I increase the product image size on the Dawn theme?

Hi there, I am trying to increase image size on the product page. Currently, it looks like this (mobile view below).

Is there a way to make the image bigger such that it fits the screen? The image does not have to be square, it can be rectangular as well. However, currently if I set the image to be rectangular, the image will appear even smaller (as it will fit the rectangle into the square).

I am using Dawn version 11.0.0.

Thanks!

Hi @laura_sg
Place the below CSS to base.css

@media only screen and (max-width: 600px){
  [id^="MainProduct-template"] {
    padding: 0px !important;
  }
  .product__info-wrapper.grid__item.scroll-trigger.animate--slide-in {
    padding: 0 1.5rem;
  }
}