/* images styling */
.image {
    display: flex;
    margin-top: 4vh;              /* Changed from 60px */
    margin-left: auto;            /* Changed from 480px - centers horizontally */
    margin-right: auto;           /* Added for proper centering */
    width: 15vw;                  /* Changed from 10% - responsive to viewport */
    min-width: 120px;             /* Minimum size for very small screens */
    max-width: 200px;             /* Maximum size for very large screens */
    height: auto;
    border: solid rgb(53, 232, 200);
    border-radius: 50%;
}