.container {
  width: 100vw;
  height: 100vh;
  display: flex;
}

.container .col {
  width: 50%;
  height: 100%;
}

.container .img-preview {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 1em;
}

.container .img-preview .img-preview-container {
  width: var(--img-width);
  height: var(--img-height);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.container .img-names {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1em;
}

.container .img-names .img-name {
  position: relative;
  width: max-content;
  height: max-content;
  cursor: pointer;
}

.container .img-names .img-name .name {
  position: relative;
  top: 0;
}

.container .img-names .img-name .name-revealer {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.container .img-names .img-name .name-revealer:after {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 140%;
  background: var(--background-color);
  border: var(--border);
}
