body, html {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: green;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
	
}
#level {
	font-size: 50px;
	text-shadow: 2px 2px 1px black;
	margin: 20px;
}

#timer {
    font-size: 300px; /* Größere Schriftgröße */
    font-weight: bold; /* Dickerer Font */
    margin: 20px;
	text-shadow: 10px 10px 2px black;
}

#currentBlind {
    font-size: 160px; /* Größere Schriftgröße */
	margin: 10px;
	text-shadow: 7px 7px 2px black;
}

#nextBlind {
    font-size: 70px; /* Größere Schriftgröße */
	margin: 40px;
	text-shadow: 4px 4px 2px black;
}
#tournamentInfo {
    display: none;
    font-size: 42px;
}
#countdownNextTurnament {
    
    font-size: 62px;
    font-weight: bold;
    margin: 20px 0;
}
#overlay
{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: green;
}