body,
html {
	height: 100%;
	max-height: 100%;
	padding: 0;
	margin: 0;
}

* {
	box-sizing: border-box;
}

.bg-image {
	background-image: url("./img.jpg");

	filter: blur(10px);
	-webkit-filter: blur(10px);

	height: 100%;
	max-height: 100%;

	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg-text {
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
	color: white;
	font-weight: bold;
	border: 2px solid #fff;
	border-radius: 5px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 80%;
	padding: 20px;
	text-align: center;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}