@import url("https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css");
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@200&display=swap');

body {
	background-color: #000;
	color: #fff;
	font-size: 16px;
	font-family: 'Source Code Pro', sans-serif;
	font-weight: 200;
}

h3 {
	font-size: 1.6rem;
}

.square {
	border: 1rem solid #fff;
	box-shadow: inset 0 0rem 0.1rem #000,
		inset 0 0rem 0.1rem #000,
		inset 0 0rem 0.1rem #000,
		inset 0 0rem 0.1rem #000;
	width: 10rem;
	height: 10rem;
	opacity: 1;
	background: #dd0;
	margin-top: auto;
	animation: alertPulse 2s ease-out;
	animation-iteration-count: infinite;
}

@-webkit-keyframes alertPulse {
	0% {
		background-color: #dd0;
		opacity: 1;
	}

	50% {
		opacity: #ff0;
		opacity: 0.75;
	}

	100% {
		opacity: #dd0;
		opacity: 1;
	}
}

.container>* {

	margin-bottom: 1rem;
}

.flex-row {
	display: flex;
	position: absolute;
	height: 100%;
	width: 100%;
	align-items: center;
	justify-content: center;
}

.vertical {
	flex-direction: column;
}

th {
	padding: 0 0 1rem;
}

td:first-child,
th:first-child {
	padding-right: 2rem;
}


a {
	color: #fff;
}

.license {
	align-self: flex-end;
	margin-top: auto;
	margin-right: 1rem;
}