@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap');

body {
	font-family: 'Roboto Mono', monospace;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
}

h2 {
	color: #fff;
}

a {
	text-decoration: none;
	color: #fff;
}

.content {
	position: relative;
	margin: 30px;
	align-items: center;
	text-align: center;
}

img {
	margin: 0;
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: solid 2px #000;
	box-shadow: 0 0 0 0px rgba(255, 255, 255, 1);
	animation: 1.5s pulse ease-out infinite;
}

@keyframes pulse {
	0%  {
		box-shadow: 0 0 0 0px rgba(255, 255, 255, 1);
	}
	
	100%  {
		box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
	}
}

table, thead, tbody {
	position: relative;
	width: 100%;
}

table.menu {
	width: 100%;
	background-color: #000;
	border-collapse: collapse;
	border-width: 2px;
	border-color: #000;
	border-style: solid;
	color: #fff;
}

table.menu td, table.menu th {
	border-width: 2px;
	border-color: #fff;
	border-style: solid;
	padding: 5px;
}

table.menu thead {
	color: #000;
	background-color: #fff;
}

#stats {
	position: relative;
	width: 100%;
	background-color: #000;
	color: #fff;
}