body {
	background-color: #282828;
	text-align:center;
	padding-top:150px;
}

.link {
	text-align: center;
	width: 700px;
	height: 150px;
	margin-left:auto;
	margin-right:auto;
	background-color:#cc3333;
	margin-bottom: 25px;
	overflow: hidden;
	transition: box-shadow 0.2s ease-in-out;
}

.link:hover {
	box-shadow: 0px 0px 20px 0px rgba(255,255,255,0.3);
}

.link-youvote {
	background-color:#4496C2;
}

.link-hobbit {
	background-color:#fff;
}

.link-img {
	height: 90%;
	margin:0;
	position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.overlay {
	position:relative;
	width: 100%;
	height: 100%;
}

.overlay .a {
	position: absolute;
	display:block;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	transition: background-color 0.2s ease-in-out;
}

.overlay:hover .a {
	background-color: rgb(255,255,255,0.2);
}

@media (max-width: 750px) {
	.link {
		width: 530px;
	}
}

@media (max-width: 575px) {
	.link {
		height: 100px;
		margin-bottom: 16px;
		width: 100%;
	}
}