/* Background image */

.background-outer {
	position: relative;
	z-index: -1;
	overflow: hidden;
	margin: -1rem 0;

	.background-inner {
		z-index: -1;
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		opacity: 0.15;

		.block,
		.block * {
			width: 100%;
			height: 100%;

			picture, img {
				object-fit: cover;
			}
		}
	}
}
