@import url('https://fonts.googleapis.com/css?family=Roboto&family=Poppins&family=Anton&display=swap');

body {
	background-color: #112;
	color: #CCC;
	font-family: Roboto;
	margin: 0;
}

a:link { color: #6b88C3 ; text-decoration: none }
a:active { color: #6b88C3; text-decoration: none }
a:visited { color: #6b88C3; text-decoration: none }
a:hover { color: #104478; text-decoration: bold }
table { font-size: 12pt; font-family: Roboto;}
input {
	background:#000000;
	border:1px solid #000000;
	color:white;
}
textarea {
	background:#000000;
	border:1px solid #000000;
	color:white;
}
.logo {
}
.logo:hover {
	animation: wiggle 1s ease-in;
}
@keyframes wiggle {
	0% {
		transform: rotate(0) scale(1);
	}
	30% {
		transform: rotate(-30deg) scale(1.2);
	}
	55% {
		transform: rotate(30deg) scale(1.2);
	}
	70% {
		transform: rotate(-30deg) scale(1.2);
	}
	80% {
		transform: rotate(30deg) scale(1.2);
	}
	100% {
		transform: rotate(0) scale(1);
	{
