html, body {
    min-height: 100%;
}

body {
    font-family: system-ui;
    background-image: radial-gradient(rgb(229, 255, 0),rgb(34, 5, 255));
    background-size: 100%;
   
}


h1, h2 {
    color: rgba(255, 157, 0, 0.5);
    mix-blend-mode: multiply;

}
p {
    color: rgb(255, 255, 255);
    mix-blend-mode: difference;
    letter-spacing: 1px;
}
img {
    max-width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    display: block;
}

.image-grid {
    width: 100%;
    grid-template-columns: auto auto;
    grid-template-rows: auto;
    display: grid;
    gap: 10px;
}
/* .image-grid > div { color: white } */
.image-grid > div > p { background-color: rgb(255 255 255 / .2) }
.image-grid > div { 
    background-size: contain;
    background-repeat: no-repeat;
}
.image-grid > div:nth-child(1) > * {
    mix-blend-mode: luminosity;
}
.image-grid > div:nth-child(2) > * {
    mix-blend-mode: color-burn;
}
.image-grid > div:nth-child(3) > * {
    mix-blend-mode: hard-light;
}
.image-grid > div:nth-child(4) > * {
    mix-blend-mode: luminosity;
}

