.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 100%;
  height: 100%; */
  text-align: center;
  flex-wrap: wrap;
  flex-direction: row;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.grid > * {
  min-width: 0;
}

.pictureFrame {
  background: white;
  border-radius: 50%;
  overflow: hidden;
}
.pictureFrame img,
svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
