body {
  background: linear-gradient(to right, #a673fe, #9253ff, #792dfb);
}

* {
  font-family: sans-serif;
}

.game {
  height: 852px;
  width: 393px;
  text-align: center;
  padding: 20px;
  margin: auto;
  justify-content: center;
}

.title {
  padding-top: auto;
  padding-bottom: auto;
  padding-left: auto;
  padding-right: auto;
  margin-bottom: 5px;
  background-color: rgb(105, 196, 173);
  color: rgb(255, 255, 255);
  font-size: 2.5em;
  font-weight: 55;
  text-align: center;
  border-radius: 20px;
    -webkit-text-fill-color: rgb(252, 213, 140);

}

.square {
  height: 100px;
  width: 100px;
  margin: 5px;
  background-color: rgb(0, 217, 255);
  float: left;
  justify-content: center;
  justify-items: center;
  font-size: 70px;
  font-weight: 50;
  color: white;
  text-align: center;
  align-items: translate(-50%, -50%);
  text-transform: uppercase;
  border-radius: 20px;
}

.squares {
  margin-left: 33px;
}

#gameintitle {
  color: white;
}

.square:hover {
  background-color: #8cf0f0;
  cursor: pointer;
}

.reset {
  background-color: turquoise;
  border-radius: 25px;
  text-align: center;
  border: 5px solid;
  border-color: linear-gradient(#a673fe, #9253ff, #792dfb);
  justify-content: center;
  margin-left: -19px;
  margin-top: 150px;
  padding: 25px;
  padding-left: 50px;
  padding-right: 50px;
  font-size: 1.5em;
  -webkit-text-fill-color: rgb(0, 67, 67);
}
.reset:hover {
  background-color: #8cf0f0;
  cursor: pointer;
}