.image-with-background {
  position: relative;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-content: center;
  display: flex;
  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
}

.image-with-background > .blur-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  filter: blur(1vw);
  z-index: 1;
}

.image-with-background > .image {
  position: relative;
  width: auto;
  z-index: 2;
  width: auto !important;
  height: auto !important;
}