:root {
  --akzentfarbe: #e73220;
  --hauptfarbe: #11a1d9;
  --textfarbe: #333333;
  --hintergrundfarbe: #fbfbfb;
  --randfarbe: #e73220;
  font-size: 17px;
  background-color: #ffffff;
  font-family: sans-serif;
}
body {
	padding-top: 1rem;
	padding-bottom: 1rem;
	width: 90%;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	color: var(--textfarbe);
	text-align: center;
}
h1 {
	font-size: 2rem;
	line-height: 2.4rem;
}
h2 {
	font-size: 1.5rem;
	line-height: 1.8rem;
	margin-top: 2rem;
}
h3 {
	font-size: 1.2rem;
	line-height: 1.5rem;
	margin-top: 1.8rem;
}
p {
	font-size: 1rem;
	line-height: 1.2rem;
}
p.lead {
	font-size: 1.2rem;
	line-height: 1.4rem;
}
img {
	width: 100%;
	max-width: 400px;
}
.box {
	border: 1px solid var(--randfarbe);
	border-radius: 0.5rem;
	background-color: var(--hintergrundfarbe);
	padding: 1rem;
	margin: 2.4rem 0;
}
.flex {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0 3rem;
    flex-direction: row;
}
.flex.einsp {
    flex-direction: column;
    align-items: center;
}
.flex.leistung {
	margin: 1.5rem 0 1rem;
}
.flex.flach {
    margin: 1rem 0;
    gap: 1rem;
}
.leistung p {
	width: 140px;
	font-weight: bold;
}
.leistung img.icon {
	width: 2rem;
	height: auto;
	border: 1px solid var(--randfarbe);
	background-color: #ffffff;
	padding: 1rem;
	border-radius: 50%;
	margin-bottom: 0.8rem;
}
img.icon {
	width: 2rem;
	height: auto;
	padding-bottom: 1rem;
}
div.spalte {
	border: 1px solid var(--randfarbe);
	border-radius: 0.5rem;
	background-color: var(--hintergrundfarbe);
	padding: 0 1rem;
	width: 200px;
}
div.spalte.gross {
	width: 300px;
    border-width: 0;
    padding: 0 0.5rem
}
a {
	color: var(--hauptfarbe);
	transition: 0.2s;
}
a:hover {
	color: var(--akzentfarbe);
}
.btn {
	padding: 0.5rem 1rem;
	border-radius: 5px;
	background-color: var(--hauptfarbe);
	text-decoration: none;
	color: #ffffff;
	font-size: 0.9rem
}
.btn:hover {
	background-color: var(--akzentfarbe);
	transition: 0.2s;
	color: #ffffff;
}
hr {
	width: 50%;
	text-align:center;
	margin-bottom: 2.4rem;
	background-color: var(--randfarbe);
	height: 1px;
	border: none;
}
ul {
	display: inline-block;
}
table {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px;
    background-color: var(--hintergrundfarbe);
    border-spacing: 0;
    border-collapse: separate;
    border-radius: 5px;
    border: 1px solid var(--randfarbe);
}
td {
    padding: 8px;
}
table td:not(:last-child) {
  border-right: 1px solid var(--randfarbe);
}

table>tbody>tr:not(:last-child)>td,
table>tr:not(:last-child)>td,
table>tbody:not(:last-child) {
 border-bottom: 1px solid var(--randfarbe);
}
