.profile-card {
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.profile-card__avatar {
    /* if user is on phone scale image down to 100px width and height */
    @media screen and (max-width: 1000px){
        width: 100px;
        height: 100px;
    }
  /* width: 100px; */
  /* height: 100px; */
  border-radius: 42%;
  margin: 0 auto 20px;
  display: block;
}

.profile-card__social{
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    width: 50%;
}

