body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    /* background-image: linear-gradient(to top, #30cfd0 0%, #330867 100%);  */   
    /* background-image: linear-gradient(135deg, #ABDCFF 10%, #0396FF 100%); */
    /* background: linear-gradient(89.7deg, rgb(0, 0, 0) -10.7%, rgb(53, 92, 125) 88.8%); */
    background: linear-gradient(to top, rgb(7, 50, 105) 0%, rgb(35, 91, 134) 100%);
    background-size: cover;
    background-position: center;
}

.heading {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-shadow: 2px 2px #d9d9d9;
}

#game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);;
    background-image: linear-gradient(315deg, #b58a25 0%, #e6a10d 74%);
    box-shadow: 10px 10px 10px transparent,
    -10px -10px 15px transparent;
    padding: 20px;
    border-radius: 20px;
}

.row {
    display: flex;
    flex-direction: row;
}

.cell {
    width: 100px;
    height: 100px;
    background-color: #63d471;
    background-image: linear-gradient(315deg, #63d471 0%, #319d8f 74%);
    border: 2ps solid #f0f0f0;
    font-size: 4rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px #5a9265 -5px -5px -5px 10px #376e21;
    transition: all 0.2s ease-in-out;
}

.cell:hover {
    background-color: #f0f0f0;
    transform: translate(-5px);
    box-shadow: 5px 5px 10px #d9d9d9, -5px -5px 10px #ffffff, inset 2px
    2px 5px #d9d9d9, inset -2px -2px 5px #ffffff;
}

.cell.x {
    color: #554fa3;
    font-weight: 600;
}

.cell.o {
    color: #b61e1e;
    font-weight: 600;
}


#message {
    margin-bottom: 20px;
    font-size: large;
    color: #b21414;
    border: 2px solid #b21414;
    background-color: #f8f8f8;
    padding: 10px;
    height: 30px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 22px;
    background-color: yellow;
}

#reset {
    background-color: #104c7c;
    color: #fff;
    font-size: 30px;
    width: 400px;
    height: 55px;
    /* Adjust the height as desired */
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    margin-top: 2rem;
    box-shadow: 5px 5px 10px transparent, -5px -5px 10px transparent;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    font-weight: bold;
    position: relative;
}

#reset:hover {
    cursor: pointer;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

