:root { font-size: 16px; } body,html { width: 100vw; margin: 0; padding: 0; } header h1 { font-size: 2rem; } .container { display: flex; flex-direction: column; justify-content: center; align-items: center; } .content>.game-area { display: grid; grid-area: 1 / 1 / 4 / 4; gap: 15px; grid-template-rows: repeat(3, 150px); grid-template-columns: repeat(3, 150px); justify-items: center; align-items: center; } .block { height: 100px; width: 100px; display: flex; justify-content: center; align-items: center; }