* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #121818;
}
.title {
  color: #fff;
  text-align: center;
  font-size: 2.5rem;
  margin-top: 10px;
  font-family: "item", cursive;
}
.display {
  color: #fff;
  font-size: 25px;
  text-align: center;
  margin: 1rem 0 1rem 0;
}
.hide {
  display: none;
}
.container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 33% 33% 33%;
  grid-template-rows: 33% 33% 33%;
  max-width: 300px;
  height: 300px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}
.tile {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  cursor: pointer;
  background-color: #705a12;
  /* background-color: #292002;*/
  border: 1px solid #292002;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}
.playerX {
  color: #dde010;
}
.playerO {
  color: #f7f6f5;
}
.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
#reset {
  background-color: #a78413;
  border: none;
  color: #fff;
  padding: 0.5rem 1.5rem;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.5s ease;
}
#reset:hover {
  background-color: #755c0a;
}

@media (max-width: 768px) {
  .title {
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    margin-top: 4rem;
  }
}
