body {
  	margin: 0;
}

.logo-square {
	position: fixed;
    margin-top: 30px;
    bottom: 30px;
    left: 0px;
    right: 0px;
	background: rgba(0, 72, 153, 0.9);
	padding: 30px;
}

.logo-square img { 
	max-height: 50px; 
	max-width: 100%;
	float: left; 
}

.middle {
	display:flex;
	justify-content:flex-end;
	align-items:center;
	min-height: 30px;
	margin: 10px 0;
}

.logo-square div { 
	float: right; 
	color: #fff; 
	font-family: 'Roboto', sans-serif; 
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
 }

.ken-burns {
	position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background-size: cover;
	background-image: url(assets/kusters_bg.jpg);
	background-position: top center;
  	width: 125%;
  	margin-left: -15%;
  	-webkit-animation: kenburns 120s infinite linear;
  	-moz-animation: kenburns 120s infinite linear;
  	animation: kenburns 120s infinite linear;
}

@keyframes kenburns {
  0% {
	transform: scale(1) rotate(0deg) translate(0, 0);
  }
  50% {
	transform: scale(1.4) translate(15%, 0);
  }
  100% {
	transform: scale(1) rotate(0deg) translate(0, 0);
  }
}

a {
	color: #fff;
	text-decoration: none;
	margin-left: 5px;
}

a:hover {
	text-decoration: underline;
}