body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: rgb(238,174,202);
background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    margin: 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 100px);
    gap: 10px;
    background-color: #b7e1ac;
    padding: 10px;
    border-radius: 5px;
}

.tile {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 5px;
}

/* .score-container {
    text-align: right;
    padding-left: 200px;
    font-weight: bold; /* Making the text bolder */
    /* margin-top: 10px;
    font-size: 24px;

    
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; Adding margin on top to create space between grid and score */



    @import url('https://fonts.googleapis.com/css2?family=Baloo+Chettan+2&family=Calligraffitti&display=swap');

    body {
      background: #6868AC;
    }
    
    .score-container {
      font-family: 'Calligraffitti', cursive;
      font-weight: 100;
      font-size: 24px;
      position: static;
      padding-left: 20%;
      text-shadow: -2px 1px 5px #ced0d3;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      letter-spacing: 0.02em;
      text-align: center;
      color: #F9f1cc;
      text-shadow: 5px 5px 0px #FFB650, 
        10px 10px 0px #FFD662, 
        /* 15px 15px 0px  #FF80BF, 
        20px 20px 0px #EF5097, 
        25px 25px 0px #6868AC, 
        30px 30px 0px #90B1E0; */
    }







.game-over {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 100;
}

.game-over-message {
    font-size: 128px;
    font-weight: bold;
    color: #f1c40f;
    margin-bottom: 20px;
}

.restart-btn {
    padding: 10px 20px;
    background-color: #2ecc71;
    color: white;
    font-size: 18px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    outline: none;
}

.restart-btn:hover {
    background-color: #27ae60;
}
