    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        display: flex;
        flex-direction: column;
        height: 100vh;
        background: rgb(5, 5, 74);
        font-family: 'Bitcount Single', sans-serif;
        margin: 0;
        box-sizing: border-box;
        width: 100%;
    }

    .layout {
        display: flex;
        flex-direction: row;
        flex: 1;
        overflow: hidden;
    }

    .right-panel {
        display: flex;
        flex-direction: column;
        flex: 1;
        overflow: hidden;
    }



    h1 {
        color: #dde8ff;
        font-size: 80px;
        margin: 0px;
        text-align: center;
        font-weight: bolder;
    }

    h2 {
        font-size: 44px;
        font-weight: bold;
        text-align: center;
    }

    .tools {
        background-color: #dde8ff;
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 10px;
        width: 320px;
        justify-content: flex-start;
        align-items: stretch;
        border-radius: 12px;
    }

    button {
        font-family: 'Bitcount Single', 'Inter', sans-serif;
        color: white;
        border: none;
        background-color: rgb(16, 16, 255);
        border-radius: 12px;
        cursor: pointer;
        font-weight: bold;
        font-size: 20px;
        padding: 10px 40px;
        width: 280px;
        margin: 0 auto;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.386);
        font-family: 'Bitcount Single', 'Inter', sans-serif;
    }

    button:hover {
        background-color: rgb(0, 0, 255);
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.500);
        transition-duration: 0.3s;
    }

    button:active {
        background-color: rgb(0, 0, 200);
        transform: scale(0.95);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.300);
        transition-duration: 0.1s;
    }


    .container {
        background: rgb(255, 255, 255);
        border: 5px solid rgb(0, 0, 0);
        display: grid;
        justify-content: center;
        gap: 0;
        flex: 1;
    }

    .cell {
        width: 20px;
        height: 20px;
        border: 1px solid black;
        margin: 0;
        width: 100%;
        height: 100%;
    }

    p {
        background-color: #dde8ff;
        width: fit-content;
        padding: 5px;
        border-radius: 5px 12px;
        font-weight: bolder;
    }



    #dropdown {
        display: none;
    }

    .opn-btn {
        display: none;
        color: white;
        font-size: 20px;
        background-color: rgb(16, 16, 255);
        width: fit-content;
        padding: 3px 7px;
        border-radius: 7px;
        text-align: center;
        margin: 0px auto;
    }

    .close-btn {
        display: none;
    }



    @media(max-width: 800px) {
        h1 {
            font-size: 65px;
        }

        .tools {
            display: flex;
            flex-direction: column;
            gap: 10px;
            position: fixed;
            top: 0;
            right: 0;
            z-index: 10;
            transform: translateX(100%);
            opacity: 0;
            pointer-events: none;
            transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        }

        .main {
            display: normal;
        }

        button {
            padding: 0px;
            width: 200px;
            height: 80px;
        }

        .opn-btn {
            display: block;
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 11;
        }

        #dropdown:checked~.close-btn {
            display: block;
        }

        #dropdown:checked~.tools {
            transform: translateX(0);
            opacity: 1;
            pointer-events: all;
        }
 
        .layout {

            flex-direction: column;
        }
    }