@import "import";

.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  &.svg {
    width: auto;
    max-width: 100%;
    height: 100px;

    img {
      object-fit: contain;
    }
  }
}
