body {
	font-family: 'Press Start 2P', sans-serif;
	background-color: black;
	color: white;
	text-align: center;
}

canvas {
      display: block;
      margin: 0 auto;
      background-color: #000;
      border: 3px solid #32CD32;
    }
	
h1 {
	color: #FFD700;
	font-size: 35px;
	margin; 20px;
}

.scoreboard{	
	display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 blokken per rij */
    max-width: 700px;
    margin: 30px auto;
}

.player-name {
    display: flex;
    justify-content: space-between; /* naam links, score rechts */
    align-items: center;
	color: #FFD700; /* Gele neon tekst */
	font-size: 15px;
	padding: 15px 30px;
}


.player-score {
	color: #FFD700; /* Gele neon tekst */
	font-size: 15px;
}

button {
    background: #00008B;
    display: inline-block;
    position: relative;
    text-align: center;
    font-size: 20px;
    padding: 7px;
    text-decoration: none; 
    color: white;
	margin: 5px;
}

button:hover {
	background-color: #1A0026;
}

button:active{
	background-color: #32CD32;
}


.block-selection {	
    margin: 15px auto;
	display: flex;
	justify-content: center;
	gap: 5px;
}

.player-selection {
	margin: 15px auto;
	width: 500px;
    display: flex;
    gap: 5px; /* Ruimte tussen de scores */
    text-align: center;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: row;
}

.block-selection button {
	width: 60px;  /* Pas dit aan naar de gewenste breedte */
    height: 60px; /* Pas dit aan naar de gewenste hoogte */
    display: flex;
	flex-direction: row;
    justify-content: center;
}

.block-selection button img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Zorgt ervoor dat de afbeelding niet vervormt */
}

.controls button {
	margin: 15px auto;
	width: 75px;
	height: 75px;
	font-size: 50px;
}