*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: sans-serif;
  background-color: #a1b9f1;
  color: #212529;
}

.wrapper{
 
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}

.board{
  background-color: cyan;
}

.row{
  display: flex;
}

.cell{
  width: 200px;
  height: 200px;
  border: solid black 2px;
  font-size: 200px;
  text-align: center;
  justify-content: center;
}

.turn{
  margin-bottom: 30px;
  letter-spacing: 2;
}

.symbol{
  color: blue;
  font-size: 30px;
  margin-left: 5px;
  margin-top: 20px;
  display: inline-block;
  text-shadow: 2;
}

.top{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.button{
  text-decoration: none;
  color: black;
  padding: 15px 15px;
  background-color: #e6546c;
  border-radius: 100px;
  border: solid black 2px;
  margin-bottom: 25px;
  font-size: 18px;
  color: white;
  font-weight: bold;
}

.button:hover{
  background-color: cyan;
  color: rgb(243, 16, 53);
}

.winner{
  visibility: hidden;
  font-size: 50px;
  color: #e6546c;
}

h1 {
  font-size: 50px;
  margin-top: 80px;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
  color: #212529;
}

@media only screen and (max-width: 600px){
  .cell{
    width: 110px;
    height: 110px;
    font-size: 90px;
  }
  .board{
    margin-top: 20px;
  }
  h1{
    margin-bottom: 20px;
  }
  h4{
    font-size: 22px!important;
  }
  h3{
    margin-bottom: -20px;
  }
  
}

.outer{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: auto auto;
  column-gap: 35px;
}

.score{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 15px;
}

h3{
  color:#212529;
  text-decoration: underline;
  margin-bottom: 20px;
  font-size: 20px;
}

h4{
  margin-top: 10px;
  font-size: 30px;
  margin-right: 15px;
}

.xScore {
  color: blue;
}

.oScore {
  color: red;
}