:root {
	--prim: #d50f30;
	--grey-light: #eee;
	--grey-dark: #333;
}

* {
	box-sizing: border-box;
	color: black;
}

html, body {
	height: 100%;
}

body {
	display: flex;
	margin: 0;
	flex-direction: column;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 1.4;
}

header, footer {
	flex: 0 1 auto;
	text-align: center;
}

a {
	text-decoration: none;
}

/* HEADER */

img {
	width: 250px;
	height: auto;
	max-width: 100%;
	margin-top: 30px;
}


/* MAIN */

main {
	flex: 1 0 auto;
}

section {
	display: flex;
	justify-content: space-evenly;
	width: 100%;
}

section:first-child {
	margin: 30px 0;
	padding: 30px;
}

#box {
	flex-direction: column;
	align-items: center;
	background-color: var(--grey-light);
}

#content {
	flex-direction: column;
	max-width: 1200px;
	margin: 30px auto;
}

div {
	padding: 30px;
}

td {
	vertical-align: middle;
}

svg {
	width: 18px;
	height: 18px;
	transform: translateY(3px);
	margin-right: 10px;
}

path {
	fill: var(--prim);
}

ul {
	margin-bottom: 0;
	list-style: none;
}

ul li::before {
	content: "\2022";
	color: var(--prim);
	font-weight: bold;
	display: inline-block;
	width: 1rem;
	margin-left: -1rem;
}

h2 {
	margin-top: 0;
}

table table {
	border-spacing: 0;
}

@media(max-width: 756px) {
	#half {
		flex-direction: column-reverse;
	}
}

/* BUTTONS */

.btn {
	border-radius: 1rem;
	padding: 1rem 2rem;
	background-color: var(--prim);
	text-transform: uppercase;
	box-shadow: 3px 3px 15px rgb(0,0,0,0.25);
	transition: all 0.25s ease-in-out;
}

.btn:hover {
	box-shadow: 3px 3px 15px rgb(0,0,0,0.5);
}

.btn span {
	color: white;
}

.btn path {
	fill: white;
}

/* FOOTER */

footer {
	background-color: var(--grey-dark);
}

footer > a {
	display: inline-block;
	padding: 15px;
	color: white;
}