body {
	font-family: Arial, sans-serif;
	display: flex;
	justify-content: center;
	padding: 40px;
	/*align-items: center;
	height: 100vh;*/
	margin: 0;
	background-color: #f4f4f4;
}

body#center { justify-content: center; }

#content {
    max-width: 70%;
    line-height: 1.5em;
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

pre {
    white-space: pre-wrap;
}

#success {
    color: green;
}

#failure {
    color: red;
}

.container {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}

input[type="submit"] {
	background-color: #4CAF50;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}
input[type="submit"]:hover {
	background-color: #45a049;
}

.impressum {
	margin-top: 20px;
	font-size: 0.9em;
}
.impressum a {
	color: #0000EE;
	text-decoration: none;
}
.impressum a:hover {
	text-decoration: underline;
}
