 * {
	 box-sizing: border-box;
 }
 
 html {
	height: 100%;
 }
 
 body {
	margin:0;
    background-image: url('images/start.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
	background-position: 50%;
 }
 
 .logo-container {
	 text-align: center;
	 padding: 10px;
 }
 
 .link-container span {
	display: block;
	color: #0B2265;
	font-size: 28px;
	text-align: right;
	background: #FFF;
	width: 100%;
	text-decoration: none;
	padding: 10px 0;
	padding-right: 10px;
}
 
h3 {
	margin: 0px !important;
	margin-right: 10px !important;
	font-size: 1.3em !important;
	line-height: 40px;
	color: #FFF !important;
	display: inline-block !important;
	font-weight: normal;
	vertical-align: middle;
}

img {
	display: inline-block;
	height: 110px;
	vertical-align: middle;
}

section {
	background: #0b2265; /* Old browsers */
	border-radius:4px;
	width: 510px;
	margin: auto auto;
	cursor: pointer;
	box-shadow: 0 0 10px 0px rgba(0,0,0,0.6);
	opacity:0.90;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: 30px;
}

@media only screen and (max-width: 600px) {
	section { 
		width: 90%; 
		font-size: 30px;
	}
	
	.link-container span {
		text-align: center;
	}
	
	img {
		margin: 5px 0;
	}
}

section:hover {
	opacity: 0.95;
}