.profile {

  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--gin-bg-layer2);
  padding: 20px;
  border-radius: var(--gin-border-m);
  margin-top: 5px;
  margin-bottom: 5px;

  .field--name-user-picture {
    img {
      border-radius: 50%;
    }
  }
}

@media screen and (max-width: 500px) {
  .profile {
    .field--name-user-picture {
      img {
        width: 50px;
        height: 5px;
      }
    }
  }
}
