* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html,
body {
	position: relative;
	max-width: 100vw;
}

body {
	display: flex;
	justify-content: center;
	height: 100%;
	min-height: 100vh;
}

.background {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.background::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: white;
	opacity: 0.1;
}

.background__source {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.logo {
	position: absolute;
	width: 100%;
	height: 100%;
}

.logo__label {
	font-size: 1.5rem;
}

.logo__source {
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: 10rem;
	margin: 0  1rem;
}
