/* styles.css */

.profile-image {
  /* This ensures the image is a clean rectangle and not too big */
  max-width: 200px;
  height: auto; /* This maintains the original proportions */
  
  /* This creates slightly rounded corners instead of a circle */
  border-radius: 8px; 

  /* This adds a clean border and shadow */
  border: 4px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
/* Add this to the end of styles.css */

.columns {
  align-items: flex-start;
}