body {
  color: rgb(255, 44, 213);
  text-shadow: 0 0 8px rgba(255, 100, 224, 0.783);
  background: linear-gradient(45deg, hotpink, rgba(0, 0, 255, 0.694), purple);
  font-family: 'Press Start 2P', cursive;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}


h1 {
  text-align: center;
  text-decoration: underline;
}

section.board {
  display: grid;
  grid-template-rows: repeat(3, 10vmin);
  grid-template-columns: repeat(3, 10vmin);
  grid-gap: 1.5vmin;
  align-self: center;
}

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

form {
  align-items: center;
	display: flex;
  justify-content: center;
  margin-top: 24px;
}

form{
  margin-left: 50px;
  font-size: 20px;
  border-radius: 20px;
  padding:20px;
}

#replay-button{
  color: rgb(255, 44, 213);
  text-shadow: 0 0 8px rgba(255, 100, 224, 0.783);
  font-size: 1.2rem;
  margin: 20px;
  border-radius: 15%;
  border: 2px ridge white;
  background: transparent;
  width: 4.5rem;
  height: 2.2rem;
}