/* Center all content */
body {
    font-family: Helvetica, Arial, sans-serif;
    margin: 25px;
    text-align: center;
}

/* Default image styling (applies to all images) */
img {
    max-width: 500px;            /* larger images */
    display: block;
    margin: 25px auto;
    transition: box-shadow 0.3s ease;
}

/* Hover shadow */
img:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* First image stays smaller */
.profile-img {
    max-width: 300px;            /* original size */
}

/* Links */
a {
    font-family: Helvetica, Arial, sans-serif;
    color: #0066cc;
}

/* Contact block */
.contact-block {
    line-height: 1.1;
    margin-bottom: 25px;
}

.contact-block .name {
    font-size: 20px;
    font-weight: bold;
}

/* Default hover shadow for all images */
img:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* Remove hover shadow from the first image */
.profile-img:hover {
    box-shadow: none;        /* no shadow */
    transition: none;        /* optional: removes the fade animation */
}
