body {
	background-color: rgb(201, 6, 6);
	font-family: sans-serif;
}
header {
	text-align: center;
	color: white;
	margin: 0px 0px 40px 0px;
}
header h1 {
	margin: 0px 0px 0px 0px;
}
header h2 {
	margin: 10px 0px 0px 0px;
}
main {
	background-color: white;
	border-radius: 15px;
	margin: 2px;
	padding: 10px 10px 10px 10px;
}
select {
	background-color: #eeeeee;
	text-align: center;
	border: thin solid grey;
	border-radius: 15px;
	padding: 10px 10px 10px 10px;
	width: 100%;
	display: block;
	margin-bottom: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
button {
	background-color: #eeeeee;
	border: thin solid grey;
	border-radius: 15px;
	padding: 10px 10px 10px 10px;
	width: 100%;
	display: block;
}
h2 {
	margin-top: 40px;
}
.refresh-section {
	margin-bottom: 40px;;
}
.info-section h2 {
	margin-top: 2px;
}
ul {
	list-style: none;
	padding-left: 0px;
}
li {
	margin-bottom: 5px;
}
a {
	background-color: #eeeeee;
	color: black;
	text-decoration: none;
	display: block;
	border: thin solid grey;
	border-radius: 15px;
	padding: 10px 10px 10px 10px;
}
a.refresh {
	background-color: bisque
}
a.informative {
	background-color: lightblue;
}
a.important {
	background-color: #ffaaaa;
}
h4 {
	margin: 0px 0px 5px 0px;
}
h3 {
	margin: 40px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
h3:first-of-type {
	margin-top: 0px;
}
h2.important-icon:before,
h2.informative-icon:before {
	display: inline-block;
	text-align: center;
	width: 1.2em;
	border-radius: 1.2em;
	margin-right: 0.4em;
}
h2.important-icon:before {
	background-color: #ffaaaa;
	content: "🔥";
}
h2.informative-icon:before {
	background-color: lightblue;
	content: "ℹ";
}
