* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #1e3a8a; /* Change background to blue */
color: #fff;
}
.game-wrapper {
text-align: center;
}
h1 {
margin-bottom: 20px;
color: #fff;
}
.board {
display: grid;
grid-template-columns: repea... See more