.logo {
  max-width: 300px;        /* Required for margin: auto to have an effect */
  margin: 6 auto;          /* Centers the entire block horizontally */
  text-align: left;   /* Ensures all text inside remains left-aligned */
  color: red;
}

.logo img {
  display: block;          /* Removes inline spacing */
  margin: 0 auto 0px auto; /* Centers the image inside the card */
  max-width: 100%;
}
