body {
  background: #0b0b0f;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
}

.container {
  width: 90%;
  max-width: 600px;
  text-align: center;
}

.img-comp-container {
  position: relative;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.img-comp-img {
  position: absolute;
  width: 100%;
  height: 100%;
}

.img-comp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-comp-overlay {
  width: 50%;
}

.img-comp-slider {
  position: absolute;
  width: 5px;
  background: cyan;
  height: 100%;
  cursor: ew-resize;
}
