*{ font-size: 30px; margin: 0; padding: 0; } .white{ background-color: antiquewhite; height: 76px; width: 76px; display: flex; justify-content: center; align-items: center; } .black{ height: 76px; width: 76px; background-color: brown; display: flex; justify-content: center; align-items: center; } body{ height: 100vh; width: 100vw; display: flex; justify-content: center; align-items: center; margin: 1px; } .chess-board{ width: 608px; height: 608px; display: grid; grid-template-columns:repeat(8,1fr); grid-template-rows:repeat(8,1fr); }