#gesamt {
	margin: auto;
	padding: 0;
	background-image: linear-gradient(aqua, aquamarine);
	width: 50%;
	border-radius: 20px;
}

#schiffName {
	background-color: orange;
	font-family: Arial;
	font-weight: bold;
	color: black;
	font-size: 30px;
	display: inline-block;
	width: 50%;
	border-radius: 20px;
	text-align: center;
	position: relative;
	left: 25%;
	padding-top: 2%;
	padding-bottom: 2%;
}

#schiffDetails {
	background-color: coral;
	font-family: Arial;
	color: black;
	font-size: 30px;
	display: inline-block;
	width: 50%;
	border-radius: 20px;
	text-align: center;
	position: relative;
	left: 25%;	
}

table {
	display: inline-block;
	width: 50%;
	text-align: center;
	position: relative;
	left: 25%;
}

td {
	width: 25%;
	padding-top: 1%;
	padding-bottom: 1%;	
}

input {
	background-color: white;
	border-radius: 10px;
	border: 2px orange solid;
	font-size: 20px;
}

input:hover {
	background-color: orange;
	border: 2px white solid;
}


