
    /* CSS Code */
    /* Heading */
    /* 3*3 Grid */
    #b1, #b2, #b3, #b4, #b5, 
    #b6, #b7, #b8, #b9 {
        width: 80px;
        height: 52px;
        margin: auto;
        border: 1px solid gray;
        border-radius: 6px;
        font-size: 30px;
		color: #000000;
        text-align: center;
    }
  
    /* Reset Button */
    #but {
        box-sizing: border-box;
        width: auto;
        height: 36px;
        border: 1px solid  #1B77CB;
        margin: auto;
        border-radius: 4px;
        font-family: Verdana, 
            Geneva, Tahoma, sans-serif;
  
        background-color: #1B77CB;
        color: white;
        font-size: 16px;
        cursor: pointer;
    }

	#but:hover {
	background-color: #4B95E7;
	}
  
    /* Player turn space */
    #print {
        font-family: Verdana, 
            Geneva, Tahoma, sans-serif;
        color: #2034bd;
        font-size: 16px;
    }
  
    /* Main Container */
    #main {
        text-align: center;
    }
  
    /* Game Instruction Text */
    #ins {
        font-family: Verdana, 
            Geneva, Tahoma, sans-serif;
        color: #2034bd;
        font-size: 17px;
    }
