* {
    font-family: "JetBrains Mono", monospace;
}

body {
    margin: auto;
    background-color: #4c566a;
}

.debug {
    background-color: yellow;
}

.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    column-count: 3;
}

table.calculator {
    width: 280px;
    height: 440px;
    table-layout: fixed;
}

td {
    padding: 0;
}

.display-container {
    background-color: #2e3440;
    color: #ffffff;
    padding: 0px 20px 0px 20px;
    height: 26%;
}

.display {
    font-size: 2rem;
}

.display-container div {
    text-align: right;
    
    overflow: hidden;
    white-space: nowrap;
}

button {
    display: block;
    border: 0;

    font-size: larger;
    width: 100%;
    height: 100%;

    /* transition-duration: 80ms; */
}

button:hover {
    transform: scale(1.08);
    box-shadow: 0px 0px 0px 2px #4c566a;
}

.ac {
    background-color: #bf616a;
}

.num {
    background-color: #eceff4;
}

.op {
    background-color: #d8dee9;
}

.calculate {
    background-color: #ebcb8b;
}