@keyframes zoomingPage {
  from {
    	transform: scale(0.5);
  }
  to {
    	transform: scale(1);
  }
}
* {
	box-sizing: border-box;
}
html, body {
	padding: 0;
	margin: 0;
	height: 100%;
	width: 100%;
	background: #7A6B66;
	font-family: 'Open Sans', sans-serif;
}
.content {
	min-height: 100%;
	width: 100%;
	background: #FFFFFF;
  	animation-name: zoomingPage;
  	animation-duration: 1s;
	text-align: center;
	padding: 5%;
	color: #7A6B66;
}
hr {
	width: 150px;
	margin: 25px auto;
	border: 0px;
	height: 5px;
	background: #7A6B66;
}
img {
	max-width: 500px;
	width: 90%;
	margin-bottom: 25px;
}
p.inontwikkeling {
	font-size: 14px;
	opacity: .7;
}
h1 {
	text-transform: uppercase;
	font-weight: 900;
}
p.whereAndWhen {
	max-width: 500px;
	margin: 0 auto;
}
p.houdOnsInDeGaten {
	opacity: .7;
}
p.siteBy {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 5px;
	font-size: 14px;
	opacity: .7;
}
a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid;
}

@media screen and ( max-width: 725px ) {

	p.siteBy {
		position: relative;
	}

}