body {
	font-family: monospace;
	margin: 0;
}

h1 {
	font-size: 1.8rem;
}
h2 {
	font-size: 1rem;
}
h3, h4, h5 {
	font-size: 0.9rem;
	margin: 25px 0 5px 0;
}
h4 {
	color: #464;
}
h5 {
	color: #686;
}
p {
	color: #888;
	font-size: 0.8rem;
	line-height: 1.2;
	max-width: 800px;
}
.dp {
	color: #222;
}

hr {
	margin-top: 20px;
	border: solid 0.8px #bdb;
}

table, td {
	vertical-align: top;
	max-width: 800px;
}
img {
	max-width: 800px;
}

li {
	padding: 3px 0 3px 0;
	color: #222;
}
@media screen and (max-width: 480px) {
	li {
		padding-right: 10px;
	}
}

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

a:hover {
	color: #c8c;
}

.button {
	background-color: #222;
	color: #dbd;
	font-size: 1rem;
	font-weight: bold;
	margin: 0 20px;
	padding: 3px;
	display: inline-block;
	float: right;
	position: relative;
}
@media screen and (max-width: 480px) {
	.button {
		margin: 0 10px;
	}
}

#searchbar {
	font-family: monospace;
	margin-top: 5px;
}

.topiclist {
	list-style-position: inside;
  padding: 0;
}

div {
	margin: 30px 50px;
}
@media screen and (max-width: 480px) {
	div {
		margin: 10px 20px;
	}
}

.grid {
	align-items: center;
	display: grid;
	grid-gap: 15px;
	grid-template-columns: 1fr 1fr;
	margin: 0;
	padding: 0;
}
@media screen and (max-width: 800px) {
	/* switch from colums to rows below 800px screen width */
	.grid {
		grid-gap: 0;
		grid-template-columns: 1fr;
	}
	.imgbox {
		display: flex;
		justify-content: center;
	}
}
.box {
	margin: 0 !important;
	/* divs within a grid have no margins (spacing comes from the parent div) */
}

@media screen and (max-width: 550px) {
	/* to introduce line breaks on large screen only */
	.full-width-breakpoint {
		display: none;
		line-height: 0;
	}
}

section {
	padding: 1px;
}

.header {
	background-color: #242;
	color: white;
}

.footer {
	background-color: lavender;
	position: fixed;
	text-align: center;
	left: 0;
	bottom: 0;
	width: 100%;
	max-height: 100px;
}

.carbonbadge {
	margin: 0;
	padding: 0;
	max-height: 60px;
}

.spacer {
	height: 100px;
	color: lavender;
}

.logo {
	margin: 10px 70px;
	width: 70px;
	max-height: 220px;
	display: inline-block;
	float: right;
	position: relative;
}
@media screen and (max-width: 480px) {
	.logo {
		margin: 10px 30px;
	}
}
