.round-image {
  display: block;
  width: 80vw;              /* responsive to screen width */
  max-width: 500px;         /* don't exceed original size */
  aspect-ratio: 1 / 1;      /* ensures it stays a square */
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}
