/* CSS Document */

.glow-youtube{
	height:auto;
	width:100%;
	margin: 10px;
	padding: 20px;
	border:none;
	border-radius:10px;
	background-color: #1c1a1a;
	animation: glow-yt 5s infinite ;
	transition:0.5s;
}

.glow-online{
	height:15px;
	width:15px;
	margin: 20px 30px 20px 0px;
	padding: 0px;
	border:none;
	border-radius:10px;
	background-color: #ff0000;
	animation: glow-yt 5s infinite ;
	transition:0.5s;
}

.glow-offline{
	height:15px;
	width:15px;
	margin: 18px 10px 0px 20px;
	padding: 0px;
	border:none;
	border-radius:10px;
	background-color: #787878;
}

.glow-twitch{
	height:auto;
	width:100%;
	margin: 10px;
	padding: 20px;
	border:none;
	border-radius:10px;
	background-color:#1c1a1a;
	animation: glow-tw 5s infinite ;
	transition:0.5s;
}

.text-darker{
	color: #6A6A6A;
	font-size:18px;
	line-height:1.9em;
}

.game-cover-medium{
	height: 100px;
	width: auto;
	margin: 0px 2px;
}

@keyframes glow-yt{
	0%{box-shadow: 5px 5px 20px #ff0000,-5px -5px 20px #ff0000;}
	50%{box-shadow: 5px 5px 20px #310000,-5px -5px 20px #310000}
	100%{box-shadow: 5px 5px 20px #ff0000,-5px -5px 20px #ff0000}
}

@keyframes glow-tw{
	0%{box-shadow: 5px 5px 20px #6441a5,-5px -5px 20px #6441a5;}  
	50%{box-shadow: 5px 5px 20px #2D0056,-5px -5px 20px #2D0056}
	100%{box-shadow: 5px 5px 20px #6441a5,-5px -5px 20px #6441a5}
}
