body {
	margin: 0;
	padding: 0;
	background: url('../images/ept_las_vegas.jpg') no-repeat center center fixed; 
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}
#flipclock {
	max-width: 640px;
	padding: 20px;
	background-color: rgba(0, 0, 0, 0.75);
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.flip-clock-wrapper .flip-clock-divider .flip-clock-label {
	color: white; /* Ändere die Farbe auf Weiß */
}
@media screen and (max-width: 768px) {
    body {
        background-size: contain;
        background-position: bottom center; /* Ändern Sie die Positionierung auf den unteren Bereich */
    }
}

@media screen and (max-height: 768px) and (orientation: portrait) {
    body {
        background-size: contain;
		background-position: bottom center; /* Ändern Sie die Positionierung auf den unteren Bereich */
    }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
    body {
        background-size: contain;
		background-position: bottom center; /* Ändern Sie die Positionierung auf den unteren Bereich */
    }
}
