

body {
    background-image:url("Game_Background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    
}

.Play_Btn {
    
    color: white;
    background-color:black;
    border-radius:10px;
    text-align:center;
    padding: 20px 80px;
    display: flex;
    justify-content: center;
    width: fit-content;
    margin: 20px auto;
} 

.Help_Btn {
    width: fit-content;
    margin: 20px auto;
    text-align:center;
    padding: 15px 40px;
    color: white;
    background-color:black;
    border-radius:10px;
    display: flex;
    justify-content: center;
}

.board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    gap: 7px;
    justify-content: center;
    margin-top: 110px;
}

.cell {
    width: 100px;
    height: 100px;
    background: #B0D7FF;
    border: 2px solid white;
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius:10px;
    color: white;
}

.Restart_Btn {
    display: inline-block;
    position: fixed;
    bottom: 80px;   
    right: 20px;    
    
    padding: 10px 20px;
    font-size: 16px;
    
    color: white;
    background-color: #B0D7FF;
}

.Header {
    text-align:center;
    background-color: #B0D7FF;
    color: white;
    width:100px;
    margin:auto;
    border-radius: 10px;
    border: 2px solid white;
    height:20px;
}

.Timer {
    text-align:center;
    background-color: #B0D7FF;
    color: white;
    width:100px;
    margin-left: 1530px;
    border-radius: 10px;
    border: 2px solid white;
}

.Main_Btn {
    display: inline-block;
    position: fixed;
    bottom: 20px;   
    right: 20px;    
    
    padding: 10px 20px;
    font-size: 16px;
    
    color: white;
    background-color: #B0D7FF;
}

















