
    body {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        user-select: none;
        background: #ecf0f3;
    }

    .container {
        margin-left: 1.8em;
        padding: 50px;
        border-radius: 8px;
        box-shadow: 13px 13px 20px #cbced1,
            -13px -13px 20px #ffffff;
    }

    .content {
        width: 100%;
        margin-top: 1.7em;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .row button {
        width: 50px;
        height: 30px;
        font-size: 16px;
        border: none;
        outline: none;
        margin: 5px;
        border-radius: 4px;
        transition: .1s;
        box-shadow: 5px 5px 8px #00000020,
            -5px -5px 8px #ffff;
    }

    .row button:hover {
        box-shadow: inset 5px 5px 8px rgba(16, 16, 16, .1),
            inset -5px -5px 8px #fff;
        background: #fff;
    }

    .display #screen {
        margin-bottom: .5em;
        width: auto;
        height: 40px;
        font-size: 20px;
        outline: none;
        border: none;
        text-align: right;
        padding-right: .5em;
        background: #ecf0f3;
        border-radius: 6px;
        box-shadow: inset 8px 8px 8px #cbced1,
            inset -8px -8px 8px #ffffff;
    }

    #eval {
        background: #0d6efd;
        color: #fff;
       
    }

    #eval:hover {
        box-shadow: inset 5px 5px 8px #0d6eaa,
            inset -5px -5px 8px #0d6efd;
    }

    #ac {
        background: #198754;
        color: #fff;
    }

    #ac:hover {
        box-shadow: inset 5px 5px 8px #196d54,
            inset -5px -5px 8px #198754;
    }

    #ce {
        background: #e90000;
        color: #fff;
    }

    #ce:hover {
        box-shadow: inset 5px 5px 8px #b60000,
            inset -5px -5px 8px #e90000;
    }
