body {
	background-color: #808080;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.center {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}
.msg {
	display: block;

	border: 1px #404040 solid;
	background-color: white;
	padding: 20px;
	border-radius: 15px;
	box-shadow: rgba(0, 0, 0, 0.5) 0px 8px 16px 0px;
}

h1 {
	margin-top: 0px;
	text-align: center;
}
.shuffle {
	color: #b0b0b0;
}
.blink {
	animation: blinker 1s step-start infinite;
}
@keyframes blinker {
	50% {
		opacity: 0;
	}
}

p#tags {
	/*display: flex;*/
	justify-content: center;
}
p#tags a {
	text-decoration: none;
}
p#tags a:hover {
	text-decoration: underline;
}

table#bg {
	background-color: #010028;
	color: #ec008c;
	padding: 5px;
	border-radius: 5px;
	margin: 0 auto;
}
table#bg td.desc {
	vertical-align: middle;
	padding-left: 10px;
	font-family: 'Segoe UI','Helvetica Neue',Helvetica,Roboto,Oxygen,Ubuntu,Cantarell,'Fira Sans','Droid Sans',sans-serif;
	font-size: 14px;
	white-space: nowrap;
}
table#bg td.desc a {
	text-decoration: none;
	color: #00ffff;
}
table#bg td.desc a:hover {
	text-decoration: underline;
}

footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;

	background-color: white;
	border-top: 1px grey solid;
	font-size: 10px;
	text-align: center;

	padding-top: 2px;
	padding-bottom: 2px;
}
footer a {
	text-decoration: none;
}
