.page-image-wrapper {
    position: fixed;
    inset: 0;
    /*In combination with slightly oversizing the image below, gets rid of the ugly edge blur from the filter...*/
    overflow: hidden;
    z-index: -2;
    background-color: rgb(27, 26, 30);
    background: radial-gradient(
        circle at center,
        rgba(29, 32, 33),
        rgb(14, 14, 14)
    );
}

.page-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    opacity: 0.065;
    filter: blur(3px);
}
