body {
  margin: 0;
}

.image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #ddd;
  height: 100dvh;
}

.image-container::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: url("hey.jpeg") center / cover no-repeat;
  filter: blur(50px);
  transform: scale(1.1);
  opacity: 0.9;
}

.image-container img {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  object-fit: contain;
}
