* {
  padding: 0;
  margin: 0;
  font-family: "Itim", cursive;
}
.background {
  background-color: #12181b;
  min-height: 100vh;
  padding-top: 3%;
}
.victory {
  margin: 0 auto;
  max-width: 50%;
}
.victory img{
  max-width: 100%;
}
.title {
  color: white;
  text-align: center;
  font-size: 50px;
}
.display {
  color: white;
  font-size: 25px;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.hide {
  display: none;
}
.container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 33% 33% 33%;
  grid-template-rows: 33% 33% 33%;
  max-width: 300px;
}

.tile {
  border: 2px solid white;
  border-radius: 5px;
  min-width: 100px;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  cursor: pointer;
}
.playerX {
  color: #ceff1a;
}

.playerO {
  color: #0075f2;
}

.controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.controls button {
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
}
#reset {
  background: linear-gradient(45deg, #dd1e4b 15%, #e0040b 65%);
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 40px;
  }
}
@media screen and (max-width: 375px) {
  .title {
    font-size: 30px;
  }
}
