main { display: flex; } main div { padding: 2%; } main #photos { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; position: sticky; top: 0; background-color: #dbb; } main #bio { background-color: #dbb; } #photos img { position: relative; width: 8em; min-width: 7vw; max-width: 12vw; height: 100%; object-fit: cover; object-position: center; border-color: #ddd; border-width: 1vh; border-style: solid; border-radius: 1vw; box-sizing: border-box; filter: grayscale(1); transition: filter 1s; } #photos img:hover { filter: none; } #photos img:nth-of-type(1) { top: -0.4vw; } #photos img:nth-of-type(2) { left: -1.6vw; top: 1.2vw; } #photos img:nth-of-type(3) { left: 1.6vw; top: -1.2vw; } #photos img:nth-of-type(4) { top: 0.4vw; }