body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100vh;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #333333;
	color: #ffffff;
	font-family: Verdana, Arial;
}

.container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

.field {
    width: 100px;
    height: 150px;
	color: #ffffff;
    background-color: #ba0c2f;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    font-size: 100px;
	text-align: center;
}

.fieldAutoPlay {
	color: #ffffff;
    background-color: #3a3a3a;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    margin: 10px;
    padding: 10px;
	text-align: center;
}

.fieldAutoPlay ol {
	text-align: left;
}

footer {
	position: fixed;
	bottom: 0; 
	left: 0; 
	width: 100%;
	background-color: #3a3a3a;
    color: #ffffff;
	padding: 10px; 
	text-align: center;
}

a {
	color: #ffffff;
}

/* Dieses CSS entfernt die Pfeile in den Nummerneingabefeldern */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

button{
	background-color: #ba0c2f;
	color: #ffffff;
    cursor: pointer;
    border: 1px solid transparent;
	padding: 10px 20px;
	font-size: 100%;
    margin: 0;
    vertical-align: baseline;
	font-weight: 400;
    text-transform: none;
    line-height: 1.5;
}

button:hover{
    background-color: #333333;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content {
    position: relative;
	text-align: center;
    z-index: 1; /* Stellt sicher, dass der Inhalt über dem Video liegt */
}

#divLadebalken {
    width: 700px;
    height: 10px;
    background-color: #3a3a3a;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

#divLadBalkFortschritt {
    width: 0;
    height: 100%;
    background-color: #ba0c2f;
    position: absolute;
    top: 0;
    left: 0;
}