.profile-img {
    position: relative;
    width: 200px;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 50%;   /* add this */
    overflow: hidden;     /* add this */
}

.profile-img img {
    width: 200px;
    height: 125px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.resume-wrapper {
  display: grid;
  grid-template-columns: 1fr;   /* 1 column on mobile */
  gap: 40px;
}

@media (min-width: 992px) {
  .resume-wrapper {
    grid-template-columns: 1fr 1fr; /* 2 columns on desktop */
  }
}
