@import url('https://fonts.cdnfonts.com/css/raleway-5');

* {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    text-align: center;
  }

  body {
    height: 100vh;
    background: linear-gradient(90deg, #c8a2c8, #e6d7ff);
  }
  
  .title {
    color: whitesmoke;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
  }

#message {
  margin: 1em;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  color: #9c6da5
}

table {
    border-collapse: collapse;
    margin: 0 auto;
    cursor: pointer;
    clear: both;
  }
  
  td {
    width: 150px;
    height: 150px;
    font-size: 130px;
    background-color:#eee0ff;
    opacity: 50%;
    border-radius: 8px;
  }
  
  .bottom {
    border-bottom: 6px solid #9c6da5;
  }
  
  .right {
    border-right: 6px solid #9c6da5;
  }

  .x::after {
    content: "x";
    font-style: normal;
    font-weight: 275;
    color: #9a85b5;
  }
  
  .o::after {
    content: "o";
    font-style: normal;
    font-weight: 275;
    color: white;
  }

  .scores {
    width: 300px;
    margin: 10px auto;
  }
  
  #player1 {
    float: left;
    display: inline-block;
  }
  
  #player2 {
    display: inline-block;
    float: right;
  }
  
  .scores p {
    font-size: 20px;
    color: #9c6da5;
  }
  
  .scores .num {
    position: relative;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    top: 0px;
    color: whitesmoke;
  }

  #restart {
    background-color: #9c6da5;
    border: none;
    color: whitesmoke;
    padding: 15px 15px;
    font-size: 20px;
    border-radius: 4px;
    margin-top: 20px;
    font-style: normal;
    font-weight: 700;
    display: inline-block;
    position: relative;
  }
  
  #restart:hover {
    background-color: #e6e6fa;
    color: #9a85b5;
    cursor: pointer;
  }

  @media (max-width: 28.75em) {
    #restart {
      margin-top: 50px;
    }

    #message {
      font-size: 16px;
    }

    .title {
      font-size: 30px;
    }
  }
