/**
* Copyright 2020 Fabian Hofbeck
*/

body {
    margin: 0;
    font-family: "Open Sans", verdana, arial, sans-serif;
	background-color: #2c2e35;
	color: white;
	text-align: center;
}

header {
	padding: 25px;
}


h1 {
    margin:  10px 0 50px 0;
    font-weight: normal;
	font-size: 56px;
	
}
h2 {
    margin: 10px;
    font-weight: normal;
}

td > h3 {
    margin: 20px 0 0 0;
    font-weight: normal;
}

table {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
	margin-top: 50px;
	background-color: white;
	color: #2c2e35;
	border-collapse: collapse;
}


table td + td { 
	border-left:40px solid #2c2e35; 
}

td {
	text-align: center;
}

td > img {
	margin: 10px 40px;
}

h3 > strong {
	background-color: #f44336;
	color: white;
    font-weight: normal;
	padding: 10px;
}

footer {
	padding: 5px;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	font-size: 12px;
	background-color: white;
	color: #2c2e35;
	
}

a {
    text-decoration: inherit;
    color: inherit;
	font-weight: bold;
}
a:hover {
    text-decoration: underline;
	font-weight: bold;
}


