@import url('https://fonts.cdnfonts.com/css/adventure-time-logo');
body {
   font-family: Arial, sans-serif;
   text-align: center;
   margin-top: 50px;
   background-image: url('https://wallpapercave.com/wp/wp2192696.jpg');
}
   h1 {
   font-size: 2em;
   font-family: 'Adventure Time Logo', sans-serif;
                                                
   }

   .game-board {
   display: grid;
   grid-template-columns: repeat(3, 150px);
   grid-gap: 5px;
   justify-content: center;
   margin-bottom: 20px;
   }

   .cell 
   {
   font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
   width: 150px;
   height: 150px;
   background-image: url('https://mir-s3-cdn-cf.behance.net/projects/404/11524093.548183007822f.jpg');
   background-size: contain;
   background-repeat: no-repeat;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   }

   .celltext{
      font-size: 4em;
      background-color: #d9ffea;
      color: #000;
   }

   .cell.taken {
   pointer-events: none;
   }

   button {
      font-family: 'Adventure Time Logo', sans-serif;
      font-size: 16px;
      padding: 15px 30px;
      border-radius: 50px;
      color: #fff;
      background-color: #4aa7df;
      border: 4px #65c3fd solid;
   }

   button:hover{
      color: #000;
      background-color: #F2b829;
      border: 4px #000 solid;
   }

   #status{
      font-family: 'Adventure Time Logo', sans-serif;
   }