* {
	text-align: center;
	font-family: 'Open Sans', Helvetica, Arial, Verdana, sans-serif;
	color: #fff;
	line-height: 1.5;
	text-shadow: 0 0 100px black;
}

body {
	background: url(bahnhof.jpeg) no-repeat;
	/* Keep the inherited background full size. */
	background-attachment: fixed; 
	background-size: cover;
	display: grid;
	align-items: center;
	justify-content: center;
	height: 100vh;
	padding: 30px;
	margin: 0;
	box-sizing: border-box;
}

h1 {
	font-size: 3em;
}

p {
	margin-top: 50px;
}

.container {
	width: 35rem;
	max-width: 90vw;
	height: auto;
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, .2); 
	border-radius: 5px;
	position: relative;
	z-index: 1;
	background: inherit;
	overflow: hidden;
	padding: 30px 50px;
}

.container:before {
  content: "";
  position: absolute;
  background: inherit;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 5000px rgba(255, 255, 255, .9);
  filter: blur(15px);
  margin: -20px;
}