@font-face {
	font-family: 'Amyn'; /*a name to be used later*/
	src: url('../fonts/amyn.ttf'); /*URL to font*/
}

#frontpage-container {
	padding-top: 4.5em;
	padding-bottom: 4.5em;
}

.category-container {
	height: 250px;
	padding: 0 !important;
	overflow: hidden;
	border: 2px solid transparent;
	cursor: pointer;
	border-radius: 10px;
}

.category {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	transition: all 0.5s ease;
}

.category::before {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(5, 71, 166, 0.75);
	opacity: 0;
	transition: all 0.5s ease;
}

.category-container:hover .category,
.category-container:focus .category {
	transform: scale(1.1);
}

.category-container:hover .category::before,
.category-container:focus .category::before {
	opacity: 1;
}

.category-container .category a {
	display: none;
	color: white;
	text-align:center;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: 50px;
	font-size: 35px;
	text-decoration: none;
	font-family: "Amyn";
	font-weight: 900;
}

.category-container:hover .category a,
.category-container:focus .category a {
	display: block;
}

footer {
	border-top: 1px #eee solid;
}