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

div.inside {
	content: "";
  	position: absolute;
  	top: 0; left: 0;
	background-image: url(sxe.jpg);
	background-repeat: none;
	background-size: cover;
	filter: grayscale(50%);
	height: 100vh;
	width: 100vw;
}

div.text {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	height: 100vh
}

h1 {
    -webkit-text-stroke: 2px black;
    -webkit-text-fill-color: white;
	color: #fff;
	font-size: 20vmin;
	text-align: center;
	margin: 0;
	padding: 0;
	width: 75%;
}
hr {
	background-color: #fff;
	border: 2px solid #000;
	height: 2.5%;
	width: 50%;
}