body {
	background-color: rgba( 23, 24, 25, 255 );
	color: rgba( 221, 221, 221, 255 );
	font-family: tahoma;
	font-weight: 100;
	text-shadow: 1px 1px 1px #000;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	color: #00B0FF;
}

.main_title {
	vertical-align: middle;
	font-size: 32px;
	background-color: rgba( 61, 61, 61, 255 );
	width: 232px;
}

@-webkit-keyframes title_anim {
    0%{ background-position:0% 50% }
    50%{ background-position:100% 51% }
    100%{ background-position:0% 50% }
}
@-moz-keyframes title_anim {
    0%{ background-position:0% 50% }
    50% {background-position:100% 51% }
    100%{ background-position:0% 50% }
}
@keyframes title_anim { 
    0%{ background-position:0% 50% }
    50%{ background-position:100% 51% }
    100%{ background-position:0% 50% }
}

.gradient_slider {
    background: linear-gradient( 271deg, #00B0FF, #0277BD );
	background-size: 400% 400%;

	-webkit-animation: title_anim 3s ease infinite;
	-moz-animation: title_anim 3s ease infinite;
	animation: title_anim 3s ease infinite;
	width: 230px;
	height: 2px;
}