#tag_a {
	color: #ffffff;
}

#tag_a:hover {
	color: black;
}

.new-text {
	background: rgba(5, 166, 84, 0.7);
	position: absolute;
	font-size: 17px;
	height: 110px;
	text-align: center;
	width: 200px;
	cursor: pointer;
	border-radius: 3px;
	top: 11%;
	left: 10%;
	animation: glow 800ms ease-out infinite alternate; 
	color: #27ff6b;
	padding: 5px;
}

.text-info {
	font-family: fantasy;
	margin: 4px 2px 4px 2px;
}

.new-text:hover {
	background: rgba(5, 166, 84, 0.8);
}

@keyframes glow {
    0% {
        border-color: #393;
        box-shadow: 0 0 30px rgba(0,255,0,.2), inset 0 0 30px rgba(0,255,0,.1), 0 1px 0 #393;
    }
    100% {
        border-color: #6f6;
        box-shadow: 0 0 30px rgba(0,255,0,.6), inset 0 0 30px rgba(0,255,0,.4), 0 0.5px 0 #6f6;
    }
}