/* Red text */
h1 {color:red;}
/* orange text */
h2 {color:orange;}
/* General table styles */
table {
  border-collapse: collapse;
  margin: 20px 0;
  width: 60%;
}

th, td {
  border: 1px solid black;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}

/* Tic-Tac-Toe specific styles */
.tic-tac-toe {
  width: 200px;
  height: 200px;
}

.tic-tac-toe td {
  width: 60px;
  height: 60px;
  font-size: 24px;
}

/* Form styles */
form {
  margin-top: 20px;
  width: 60%;
}

label {
  display: block;
  margin-top: 10px;
}