* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    color: #545454;
    display: flex;
    font-family: sans-serif;
    justify-content: center;
    font-size: 60px;
  }
  
  .container {
    background: #FFB6C1;
    margin: 50px;
    padding: 50px;
    border-radius: 25px;
  }
  
  .title {
    text-align: center;
  }
  
  .title span {
    color: white;
  }
  
  .status-action {
    display: flex;
    margin-top: 25px;
    font-size: 40px;
    justify-content: space-around;
    height: 30px;
  }
  
  .status span {
    color: white;
  }
  
  .reset {
    cursor: pointer;
  }
  
  .reset:hover {
    color: white;
  }
  
  .game-grid {
    background: #36062e;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 15px;
    margin-top: 50px;
  }
  
  .game-cell {
    background: #FFB6C1;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 200px;
    width: 200px;
  }
  
  .x,
  .o {
    cursor: default;
  }
  
  .x::after {
    content: '×';
    font-size: 200px;
  }
  
  .o::after {
    content: '○';
    color: white;
    font-size: 225px;
  }
  
  .won::after {
    color: red;
  }
  
  @media only screen and (max-width: 1024px) {
    .game-grid {
      margin-top: 25px;
      grid-gap: 10px;
    }
  
    .game-cell {
      height: 150px;
      width: 150px;
    }
  
    .x::after {
      font-size: 150px;
    }
  
    .o::after {
      font-size: 175px;
    }
  }
  
  @media only screen and (max-width: 540px) {
    .container {
      margin: 25px;
      padding: 25px;
    }
  
    .game-cell {
      height: 100px;
      width: 100px;
    }
  
    .x::after {
      font-size: 100px;
    }
  
    .o::after {
      font-size: 125px;
    }
  }
  
