* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

@font-face {
  font-family: 'IBM Plex Sans';
  src: url('IBMPlexSans-Regular.woff2') format('woff2'),
       url('IBMPlexSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url('IBMPlexMono-Regular.woff2') format('woff2'),
       url('IBMPlexMono-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
	font-size: 100%;
	height: 100%;
}

body {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 1.4;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #111;
	color: white;
	padding: 1rem 1rem 3rem 1rem;
}

body > div {
	max-width: 25rem;
}

p {
	margin-bottom: 1rem;
}

a {
  text-decoration: underline;
}

a:link, a:visited {
  color: inherit;
}

img {
	display: inline-block;
	width: 10.5rem;
	padding-bottom: 1rem;
}

.border {
	display: inline-block;
	font-size: 0.8rem;
	border: 0.1rem solid white;
	padding: 0.3rem 0.5rem;
	margin: 0.4rem 0 1.1rem 0;
}