body, html {
  height: 100%;
  margin: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.split {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
}

.left {
  left: 0;
  background: url('love.png') no-repeat;
  background-size: contain;
  background-position: left center;
}

.right {
  right: 0;
  width: 50%;
  background: url('love.png') no-repeat;
  background-size: contain;
  background-position: left center;
  transform: scaleX(-1);
}


.text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10em;
  user-select: none;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100vh;
}

#image-o {
  width: 0.8em;
  height: 0.8em;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

#image-o img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.text span, #image-o {
  margin: 0 auto;
}
