/* images */
#images {
    /* Makes the image scale to the width of its parent column on all devices */
    max-width: 100%; 
    height: auto; /* Maintains the aspect ratio to prevent image distortion */
    display: block; /* Ensures proper block rendering */
    margin: 0 auto 15px auto; /* Centers the image and adds bottom spacing */
    
    /* Original aesthetic styles */
    border: solid 2px;
    border-radius: 4px; /* Slightly increase radius for modern look */
    border-color: #795238;
}

/* btn */
/* Issue 3: Combined redundant .btn-success rules. Kept your desired black background and white text. */
.btn-success {
    margin-top: 10px; /* Spacing */
    background-color: black !important;
    border-color: #aea7a3 !important;
    color: whitesmoke;
    letter-spacing: 1px;
}
/* heading 4 */
h4 {
    letter-spacing: 1px;
}

#slide-show {
    border: whitesmoke solid 20px;
}

