img {
    max-width: 42%;
    /* Image can scale down but not larger than its original size */
    height: auto;
    /* Maintain the aspect ratio */
    display: block;
    /* Images are inline by default, change to block to enable margin auto */
    margin-left: auto;
    /* Align to the right side of the center */
    margin-right: auto;
    /* Align to the left side of the center */
    padding-top: 20px;
    /* Padding above the image */
    padding-bottom: 20px;
    /* Padding below the image */
    transform: translateX(-42%);
    /* Move to the left of the center */
}


body {
    font-family: 'Lucida Console', monospace
}
