body {
  font-family: Tahoma, "Trebuchet MS", sans-serif;
  display: flex;
  justify-content: center;
  height: 100vh;
  margin: 0;
  background-color: #f4f4f9;
}

a {text-decoration: none;}

.container {
  text-align: center;
}

h1 {
  margin-bottom: 20px;
  color: #333;
}


.title {
	font-family: "Alfa Slab One", serif;
}

.text {
	font-family: "Roboto Slab", serif;
}

.board {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-gap: 5px;
  justify-content: center;
  margin-bottom: 20px;
}

.cell {
  width: 100px;
  height: 100px;
  background-color: #fff;
  border: 0px;
  border-radius: 8px;
  font-family: "Quicksand", serif;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  user-select: none;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.cell.taken {
  pointer-events: none;
  color: #555;
}

.status {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
  font-family: "Quicksand", serif;
}

#reset {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  font-family: "Quicksand", serif; 
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.3s;
}

#reset:hover {
  background-color: #59A7FF;
}

#reset:active {
	transform: scale(0.9);
}
