/* Frontend - Hover - Inverted */

html {
    background: #eaeaea;
}
.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1000px;
}

/* Hover inverted */
.hover-inverted {
    position:relative;
    z-index:0;
    cursor: none;
    overflow: hidden;
}
.hover-inverted::before {
    opacity: 0;
    visibility: hidden;
    content:"";
    position:absolute;
    z-index:999;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background: radial-gradient(farthest-side ,#fff 95%,transparent 100%) calc(var(--cursorX) - 40px) calc(var(--cursorY) - 40px) / 80px 80px  fixed no-repeat;
    mix-blend-mode:difference;
}
.hover-inverted:hover:before  {
    opacity: 1;
    visibility: visible;
}


/* Dummy content */
.dummy-content {
    padding-top: 60px;
}
.dummy-content .dummy-text-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 100px;
    margin-bottom: 120px;
}
.dummy-content .dummy-text-image .dummy-text {

}
.dummy-content .dummy-text-image .dummy-text .dummy-text-headline {
    background: #dadada;
    height: 30px;
    margin-bottom: 15px;
}
.dummy-content .dummy-text-image .dummy-text .dummy-text-text {
    background: #dadada;
    height: 16px;
    margin-bottom: 5px;
}
.dummy-content .dummy-text-image .dummy-text .dummy-text-text:nth-child(3) {
    width: 82%;
}
.dummy-content .dummy-text-image .dummy-text .dummy-text-text:nth-child(4) {
    width: 80%;
}
.dummy-content .dummy-text-image .dummy-text .dummy-text-text:nth-child(5) {
    width: 60%;
}
.dummy-content .dummy-text-image .dummy-text .dummy-text-text:nth-child(6) {
    width: 78%;
}
.dummy-content .dummy-text-image .dummy-text .dummy-text-text:nth-child(7) {
    width: 66%;
}
.dummy-content .dummy-text-image .dummy-image {
    background: #dadada;
    width: 100%;
    height: 200px;
}
.dummy-content .dummy-text-image .dummy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
