/* CSS */
* { 
	margin: 0; 
	padding: 0;
}
body{
	margin: 0px;
	padding: 0px;
	background: #160510;
	font-family: 'Mohave', sans-serif;
	font-size: 22px;
	line-height: 1.1em;
	text-transform: uppercase;
	color: #a0668b;
	-webkit-font-smoothing: antialiased;
}
.neon, .info {
	width: 90%;
	max-width: 600px;
	margin: 100px auto;
}
.neon .row {
	display: flex;
    flex-wrap: nowrap;
	align-items: top;
    justify-content: center;
}
.info p {
	margin-bottom: 20px;
	text-align: center;
}
a {
	text-decoration: none;
	color: #a0668b;
}
a:hover {
	color: #FFF;
}
/*.neon .row .item {
	height: 30vh;
	flex-grow: 1;
}*/
img {
	width: 100%;
	height: auto;
	webkit-filter: drop-shadow(22px -22px 52px rgba(212, 44, 182, 1));
	filter: drop-shadow(22px -22px 52px rgba(212, 44, 182, 1));
}
.flicker-slow {
	animation: flicker 3s linear infinite;
}
.flicker-medium {
	animation: flicker 2s linear infinite;
}
.flicker-fast {
	animation: flicker 1s linear infinite;
}
.at-sign {
	font-family: sans-serif;
	font-weight: bold;
}
@keyframes 
	flicker {
		0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% { opacity: .99; }
		20%, 21.999%, 63%, 63.999%, 65%, 69.999% { opacity: 0.4; }
}
@media only screen and (max-width: 760px) {
	.neon {
		width: 80%;
	}
	.neon, .info {
		margin: 50px auto;
	}
}