@import url("https://fonts.googleapis.com/css2?family=Alkalami&family=Cormorant+Garamond:wght@600&family=Dosis&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 5px;
  background-image: linear-gradient(to right, skyblue, cornsilk);
}
h1 {
  color: sandybrown;
  font-family: "Alkalami", serif;
  font-size: 3rem;
}
h2 {
  color: sandybrown;
  font-size: 2rem;
}

#board {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 306px;
  width: 306px;
  padding-top: 5px;
}

.cell {
  height: 100px;
  width: 100px;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  padding: 20px;
  padding-left: 39px;
  box-shadow: 5px 5px 5px skyblue inset;
  color: #fffffa;
  font-size: 2rem;
  font-weight: bold;
}

button {
  font-size: 1rem;
  border-radius: 10%;
  background-color: #c48d3f;
  color: whitesmoke;
  padding: 2px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
label {
  background-color: #c48d3f;
  color: #fffffa;
  font-size: 1rem;
  padding: 2px;
}
.cell:hover {
  background-color: lightgreen;
}

.right-border {
  border-right: 0.2rem solid tomato;
}
.bottom-border {
  border-bottom: 0.2rem solid tomato;
}

.choice {
  font-size: 1rem;
  color: black;
  background-color: cornsilk;
  padding: 5px;
  border: 1px black solid;
}
.choice:focus {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0.2rem;
  color: white;
  background-color: lightgreen;
  padding: 5px;
  border: 1px black solid;
}
