body {
	background: #0A0A0A;
	padding:20px;
}
.header {
	text-align: center;
}
.header h1 {
    animation: glowingPulse 2s linear infinite;
	font-size: 40px;
}
.header img {
	max-width: 180px;
}
h1 {
	font-family: 'Barlow Condensed', sans-serif;
	color: white;
	text-transform: uppercase;
}
.mapsGrid {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
a {
	padding: 60px 0;
    display: flex;
	justify-content: center;
	align-items: center;
    text-align: center;
    color: white;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
	margin-right: 20px;
	transition: all .1s ease-in-out;
	position: relative;
	border: 1px solid #521f0b;
	min-width: 250px;
	margin-bottom: 20px;
}
a::before {
	content: '';
	background: rgba(10, 10, 10, 0.64);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
a:hover {
	    box-shadow: 0 0 0px rgba(255,153,0,1), 0 0 3px rgba(255,153,0,1), 0 0 12px rgba(255,0,0,1), 0 0 25px rgba(255,0,0,1), 0 0 1px rgba(255,0,0,1), 0 0 9px rgba(255,0,0,1);
		transition: all .1s ease-in-out;
}
a span {
    display: block;
    text-align: center;
    color: white;
    text-decoration: none;
	z-index: 999;
    position: relative;
}


/* Inline Animation & 3D */
@keyframes glowingPulse {
    0% {
        color: #fef051;
        text-shadow: 0 0 4px rgba(255,153,0,0.2),
        0 0 8px rgba(255,153,0,0.3),
        0 0 12px rgba(255,0,0,0.2),
        0 0 16px rgba(255,0,0,1),
        0 0 20px rgba(255,0,0,1),
        0 0 40px rgba(255,0,0,1);
    }
    50% {
        color:#ff2400;
        text-shadow: 0 0 1px rgba(255,153,0,0),
        0 0 2px rgba(255,153,0,0),
        0 0 4px rgba(255,0,0,0),
        0 0 8px rgba(255,0,0,0),
        0 0 16px rgba(255,0,0,0),
        0 0 32px rgba(255,0,0,0);
    }
    100% {
        color: #fef051;
        text-shadow: 0 0 4px rgba(255,153,0,0.2),
        0 0 8px rgba(255,153,0,0.3),
        0 0 12px rgba(255,0,0,0.2),
        0 0 16px rgba(255,0,0,1),
        0 0 20px rgba(255,0,0,1),
        0 0 40px rgba(255,0,0,1);
    }
}
