    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        list-style: none;
        text-decoration: none;
    }

    body {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: black;
        flex-direction: column;
        background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
    }

    /* body.swal2-height-auto {
    height: 100vh !important;
    overflow: hidden !important;
} */

    .board {
        height: auto;
        width: 360px;
        /* border: 1px solid rgb(124, 209, 85); */
        display: flex;
        flex-wrap: wrap;
        padding: 10px;
        gap: 20px;

    }



    .cell {
        height: 100px;
        width: 100px;
        border-radius: 20px;
        border: none;
        transition: all 0.2s;
        font-size: 45px;
        /* border: 3px solid rgb(210, 189, 215) ; */
        background: rgba(240, 248, 255, 0.565);
        box-shadow: 0px 0px 30px 1px rgb(210, 189, 215);

    }

    .x-sign {
        color: #921aaaff;
        font-size: 50px;
    }

    .o-sign {
        color: #d14b73ff;
        font-size: 50px;
    }

    .cell:hover {
        transform: scale(1.05);
    }

    .cell:active {
        transform: scale(0.95);
    }

    .scoreboard {
        border: 3px solid white;
        border-radius: 20px;
        padding: 10px;
    }

    .turn-color {
        color: #97096f;
    }

    .title {
        color: #2c3e50;
    }

    @media screen and (max-width: 576px) {
        .cell {
            width: 80px;
            height: 80px;
            font-size: 2.5rem;
        }

        .board {
            gap: 10px;
            width: 260px;
            padding: 0;
        }

        .scoreboard {
            padding: 15px;
        }
    }