/* Media query for screens less than 512px wide */
@media screen and (max-width: 512px) {
  header > nav > div > a {
    width: 12rem;
  }

  header > nav > div > a > img.h-14.mr-3 {
    width: auto; /* Allow the image's width to adjust automatically */
    height: 100%; /* Ensure the image fills its container vertically */
  }
}
