/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 24 2024 | 16:01:22 */
.about img {
    width: 450px; /* Adjust size as needed */
    height: 450px; /* Adjust size as needed */
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 9px #fff;
    margin: 0 auto; /* Centers the image horizontally on larger screens */
    display: block; /* Ensures the margin: 0 auto; works properly */
}

@media (max-width: 768px) {
    .about img {
        max-width: 300px; /* Adjust size as needed for smaller screens */
        max-height: 300px; /* Adjust size as needed for smaller screens */
        margin: 0; /* Reset margin for smaller screens */
    }
}
