html {
	box-sizing: border-box;
  }
  
  *,
  *:after,
  *:before {
	box-sizing: inherit;
  }

@font-face {
	font-family: Digital;  
	src: url('../fonts/digital-7-mono.ttf');  
	font-weight: normal;  
}

body {
	width: 100%;
	/* min-height:100%; */
	margin: 0;
	padding: 0;
	background-image: url("../img/background.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 30%;
	display: flex;
	align-items: center;
    justify-content: center;
}

iframe {
	width: 100%;
	min-width: 80vw;
	min-height: 98vh;
	/* margin-top: 200px; */
	margin-bottom: 1rem;
	border-radius: 2rem;
	/* z-index: 10; */
	border: 0px;
	margin-left: auto;
	margin-right: auto;
	/* border: 1px red solid; */
}

p, div {
	font-family: Verdana;
	text-align: center;
	padding: 0;
	margin: 0;
}


.clickable_area {
	display: block;
	width: 600px;
	height: 200px;
	margin-top: 45px;
	position: absolute;
	top: 0;
	left: 0;
	padding-bottom: 0px;
	margin-bottom: 0px;
	margin-right: 10px;
/*	 border: 4px solid red; */
  }

.control-panel {
	display: none;
	position: absolute;
	margin-top: 0px;
	left: 0px;
	top: 0px;
	padding: 0px;
	/* border: 1px red solid; */
}

.control-panel-new {
	/* display: none; */
	/* position: absolute; */
	margin-top: 0px;
	left: 0px;
	top: 0px;
	height: 100%;
	padding: 0px;
	width: 50px;
	border: 1px red solid;
}

.control-panel_wrapper {
	display: flex;
	gap: 0.25rem;
	justify-content: center;
	align-items: center;
	margin-top:5px;
	margin-left: 20px;
  }

input[type=text] {
  	border:0px; 
	font-size: 1rem;
	padding: 3px;
	background: transparent; 
	color: #ccc;
	border: 0px;
}

input[type=button] {
    padding: 3px; 
    background: transparent; 
	font-size: 1rem;
	color: #ccc;
	border: 0px;
}

#button_music {
	background-image: url("../img/music.png");
	background-color: transparent;
	background-position: 0px 0px;
	background-repeat:no-repeat;
	background-position: left;
	padding-left: 16px;
}

#button_mute {
	background-image: url("../img/mute.png");
	background-color: transparent;
	background-position: 0px 0px;
	background-repeat:no-repeat;
	background-position: left;
	padding-left: 16px;
}

.countdown-timer {
	position: absolute;
	top: 5%;
	border: 0px red solid;
	color: red;
	font-size: 12rem;
	font-family: Digital;
	text-align:left;
	font-weight: 400;
}

#messages {
	width: 95%;
	position: absolute;
	text-align: center;
	margin-top: -400px;
	margin-left: 50px;
	margin-right: 50px;
	font-size: 36px;
	z-index: 0;
	color: red;
	background: rgba(255, 255, 255, .8);
}

.winners-wrapper {
	background-color: green;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
	position: fixed;
	z-index: 0;
	height: 100vh;
	width: 100%;
}

 .countdown-timer__winners {
	font-family: Digital;
	margin: 220px auto;
	border: 0px #fff solid;
	color: #fff;
	margin-right: auto;
	width: 100%;
	font-size: 15rem;
	text-align:center;
	font-weight: 400;
}

.game-over {
	display:flex;
	justify-content: center;
	align-items: center;
	display: none;
	padding: 12%;
	background-color: darkred;
	width: 100%;
	min-height: 100vh;
	position: fixed;
	z-index: 0;
  }
  
  .game-over-header {
	margin-top: 10%;
	margin-bottom: auto;
	font-size: 20rem;
	text-align: center;
	font-family: Digital;
	color: #fff;
  }

.restart-clickable-area {
	display: block;
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	width: 100px;
	height:50px;
	/* border: 2px solid red;/ */
  }

.restart-button-wrapper{
		display: none;
		position: absolute;
		top: 0.5rem;
		right: 0.5rem;
		width: 100px;
		height:50px;
		/* border: 2px solid red;/ */
}

.restart-button {
	padding: 0.5rem 1rem;
	border-radius: 8px;
	box-shadow: 0;
	background-color: darkred;
	color: white;
	border: 1px solid;
}

