body {
    background-color: orangered;
	/* Use a system font, if none are available use an available sans-sarif   font */
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
  Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

section.board {
  display: grid;
  grid-template-rows: repeat(3, 10vmin);
  grid-template-columns: repeat(3, 10vmin);
  grid-gap: 1vmin;
  text-align: center; 
  background-image: center;
}

body {
  text-align: center;
  align-items: center; 
}

div {
  border: 3px solid black;
  font-size: 8vmin;
  text-align: center;
  vertical-align: middle; 
}

h1 {
  font-family: fangsong;
  background-color: black;
  color: rgba(89, 168, 242, 0.783) 
}

h2 {
  font-family: 'Times New Roman', Times, serif;
  background-color: rgba(255, 183, 0, 0.961);
  
}

button#reset-button {
  background-color: red;
  text-align: center;
  margin-top: 5px; 
}

