/* Globales Boxmodell-Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

#wrapper {max-width:1200px;width:100%;margin: 2rem auto;padding:2rem}

#main {margin-right:3rem}

#main .inside {margin: 2rem 0;border-top:1px solid black; border-bottom:1px solid black;padding:2rem 0}

#footer .inside {}

label {margin-right:2rem;}
button.submit {font-size:1rem}

.terminbox {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #164194;
	color: #164194;
	font-weight: 600;
	padding: 1rem;
	margin: 0.5rem 0;
	text-decoration: none;
	border-radius: 12px;
	transition: background-color 0.3s;
}

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