.LogoAvatar {
  /* make a square container */
  width: 100%;
  height: 100%;

  /* center horizontally */
  margin-left: auto;
  margin-right: auto;

  /* fill the container, preserving aspect ratio, and cropping to fit */
  background-size: contain;
  background-repeat: no-repeat;

  /* center the image vertically and horizontally */
  background-position: center;

  box-sizing: border-box;
}

.Empty {
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: italic;
  font-size: 14px;
  padding: 10px;
  text-align: center;
}

.Clickable {
  cursor: pointer;
}
