body {
	margin: 0;
	height: 100vh;				/* vh = Viewport Height, also der sichtbare Bereich des Browserfensters */
	display: flex;
	justify-content: center;
	align-items: center;
}

#ganzeBox {
	display: flex;          
    width: 600px;          
    height: 600px;            
    justify-content: center;/* Zentriert die kleine Box horizontal */
    align-items: center;/* Zentriert die kleine Box vertikal */    
	background-color: #C3FF5E;   
	border-radius: 50px;
	
}

#innereBox {
	display: flex;
	flex-direction: column;
	justify-content: center;/* Zentriert die kleine Box horizontal */
    align-items: center;/* Zentriert die kleine Box vertikal */ 
	background-image: linear-gradient(aqua);
	width: 450px;
	height: 450px;
	border-radius: 30px;
}

input:hover {
	background-color: #C3FF5E;
}

input {
	border-radius: 10px;
	text-align: center;
	font-size: 20px;	
}

input::placeholder {
	text-align: center;
}

td {
	text-align: center;      /* Zentriert geschwindigkeit und pace horizontal */
	vertical-align: center;  /* Zentriert geschwindigkeit und pace vertikal */
	padding: 10px;
}

#geschwindigkeit {
	width: 200px;
	height: 50px;
	border: 5px #C3FF5E solid;
	border-radius: 20px;
	font-family: sans-serif;
	font-size: 20px;	
	background-color: white;
}

#pace {
	width: 200px;
	height: 50px;
	border: 5px #C3FF5E solid;
	border-radius: 20px;
	font-family: sans-serif;
	font-size: 20px;	
	background-color: white;
}
