body {
  margin: 0;
  padding: 0;
  text-align: center;
  user-select: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.image-split-container {
  max-height: 50vh;
  max-width: 50vw;
  position: relative;
  margin: auto;
  will-change: transform;
  top: 100px;
  right:0;
  padding: 120px 640px; /* Increase padding, increasing hover area */


  &:hover {
    .image-split-magenta {
      transform: translateX(0);
    }

    .image-split-yellow {
      transform: translateX(0);
    }
  }

  .image-split-color {
    mix-blend-mode: darken;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    & > div {
      position: relative;
      background-color: #210dbb5d;

      &:after {
        content: "";
        height: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        mix-blend-mode: lighten;
      }
    }
  }

  .image-split-magenta {
    transform: translateX(-100px);
    transition: transform 1s ease;

    &:after {
      background-color: #151384;
    }
  }

  .image-split-cyan {
    transform: translateY(0);

    &:after {
      background-color: rgb(218, 56, 23);
    }
  }

  .image-split-yellow {
    transform: translateX(100px);
    transition: transform 1s ease;

    &:after {
      background-color: rgb(186, 236, 236);
    }
  }
}

.instruction {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3em;
  margin: 1.2em;
}
