body { background-color: #333; }

div#content {
	display: flex;
	justify-content: center; /* Horizontale Zentrierung */
	height: 100vh;
}

div#body {
    width: 99vw;
	text-align: center;
	font-size: 13px;
	font-family: Verdana;
	color: white;
	border-right: 2px solid #A9E2F2;
	border-left: 2px solid #A9E2F2;
	border-bottom: 2px solid #D986D3;
}

td, input, button {
	font-size: 12px;
}

p {
	padding: 0 10px;
}

p#top {
	background: linear-gradient(to right, #A8E6F4 0%, #db84d2 50%, #A8E6F4 100%);
	border-bottom: 5px solid #D986D3;
	font-size:14px;
	text-align:left;
	color:#000;
	padding: 10px 20px;
	margin: 0;
}

a {
    color: #D49C1B; /* Link Schriftfarbe */
    text-decoration: underline;
}

p span {
    color: #D49C1B !important; /* Link Schriftfarbe */
    text-decoration: underline;
}

.container {
    position: fixed; /* Fixed, damit es immer auf der Seite bleibt */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Im Hintergrund */
    pointer-events: none; /* Verhindert, dass der Container auf Klicks reagiert */
    animation: animateNumbers 30s infinite; /* Beispiel für die Animation */
}

@keyframes animateNumbers {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}

.number {
    position: absolute;
    font-size: 40px;
    color: #ffffff;
    user-select: none; /* prevent selection of numbers */
    transform-style: preserve-3d;
}

form table {
	color: white;
	margin: 0 auto;
    text-align: center;
}

button, button a, input[type="submit"] {
	background-color: red;
	color: white;
	margin-top: 10px;
	padding: 5px;
	border: 0;
	border-radius: 3px;
	text-decoration: none;
}

button:hover, button a:hover, input[type="submit"]:hover {
	background-color: white;
	color: red;
}

#table-container {
    position: relative; /* Grundlage für absolute Positionierung */
    height: 50%; /* Höhe des Containers */
}

#background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0; /* Hintergrundebene */
    transform: translate(-50%, -50%); /* Zentrierung um die Mitte */
    pointer-events: none; /* Klicks gehen durch das Bild hindurch */
}

#table {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* Vordergrundebene */
    width: 100%; /* Tabelle passt sich der Containerbreite an */
    height: 100%; /* Tabelle passt sich der Containerhöhe an */
    display: flex;
    justify-content: center;
    align-items: center;
}

footer {
    color: #FFFFFF;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;
	opacity: 0.4;
}