
.scoreboard { display: flex; gap: 10px; margin: 20px auto; justify-content: center; }
.scoreboard input { width: 100px; text-align: center; font-size: 1.2em; font-weight:900;}
.controls { text-align: center; margin-top: 15px; }
#dartboard { position: relative; z-index: 1; display: block; }
#dartboardContainer { position: relative; display: inline-block; }
.sign_kalkulatorwyniku{color:white; font-size: 2em;}

#messageOverlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15em;
  color: orange;
  
  text-shadow: 8px 8px 24px black;
  opacity: 0;
  font-weight:900;
  pointer-events: none;
  z-index: 2;
}

@keyframes fadeInOut {
  0% { opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; }
}
	
	
	
@media only screen and (max-width: 600px) {
	.scoreboard input {
		width:20%;
	}
	
	#messageOverlay {
		font-size: 10em;
	}
}