body {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  h1 {
    font-size: 42px;
  }
  
  #buttons-container button {
    border: none;
    padding: 10px 15px;
    margin: 0 10px;
  }
  
  #container {
    display: flex;
    width: 300px;
    margin: 0;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
  
  .box {
    height: 100px;
    border: 5px solid #000;
    box-sizing: border-box;
    flex: 1 1 33%;
  }
  
  #b-1, #b-2, #b-3 {
    border-top: none;
  }
  
  #b-3, #b-6, #b-9 {
    border-right: none;
  }
  
  #b-7, #b-8, #b-9 {
    border-bottom: none;
  }
  
  #b-1, #b-4, #b-7 {
    border-left: none;
  }
  
  .x {
    font-size: 65px;
    color: #ff000f;
    display: inline-block;
    line-height: 100px;
  }
  
  .o {
    height: 50px;
    width: 50px;
    border: 5px solid green;
    border-radius: 50%;
    display: inline-block;
    margin-top: 17px;
  }
  
  .hide {
    display: none !important;
  }
  
  #scoreBoard {
    font-weight: bold;
    margin-top: 30px;
    font-size: 25px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
  
  .score-box {
    margin: 0 20px;
  }
  
  #x-score {
        color: red;
        margin-right: 3px;
  }
  
  #o-score {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid green;
    border-radius: 50%;
    margin-right: 3px;
  }
  
  /* msg */
  
  #msg p {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    top: 190px;
    width: 500px;
    font-size: 50px;
    background-color: #000;
    color: white;
    padding: 20px;
  }