<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  background: #111111;
  height: 10000px;
}
.outputImage {
  position: absolute;
  width: 600px;
  border-radius: 6px;
  top: 50%;
  transform: scale(2) translateY(-50%);
  filter: blur(100px);
  transition: 3s filter, 2s transform;
  border-radius: 4px;
  overflow: hidden;
}
.isInitialized .outputImage {
  filter: none;
  border-radius: 4px;
  transform: scale(1) translateY(-50%);
}
.outputImage img {
  width: 100%;
  height: auto;
}
.inputImageList {
  position: absolute;
  top: 0;
  display: flex;
  flex-wrap: nowrap;
  width: 100vw;
  height: 300px;
  gap: 80px;
}

.inputImage {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  flex-shrink: 0;
  box-shadow: 0px 3px 20px #00000033;
  transform: translate(calc(50vw - 50%), calc(50vw - 50%));
  transform-origin: 50% 50%;
  cursor: pointer;
  transition: opacity 1000ms;
  opacity: 0;
}

.inputImage:hover {
  filter: none !important;
  z-index: 2;
  transition: 500ms filter;  
}

.inputImage img {
  position: absolute;
  width: 200px;
  height: auto;
  background: #ffcccc;
  border-radius: 4px;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
}</pre></body></html>