* {
    padding: 0px;
    margin: 0px;
    border: none;
    box-sizing: border-box;
    font-size: large;
}

.calc {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;     /* deixa os elementos um embaixo do outro */
    background-color: #eee;
    border: 3px solid #bbb;
    width: 230px;
    border-radius: 5px;
}

/* titulo */
.div_nome {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
}


.div_teclas {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    flex-wrap:wrap;     /* quebra a linha deixando uma embaixo da outra */
}

.tecla {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #aaa;
    border: 3px solid #888;
    border-radius: 10px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    cursor: pointer;
    margin: 2px;
}

.teclaOp {      /* 'style' para teclas de operção(sinais) */
    background-color: #f44 !important;
    border: #800 !important;
}

/* display */

.div_display {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
}

.display {
    width: 220px;
    background-color: #8a8;
    text-align: right;
    padding: 5px;
    font-family: monospace;
    font-size: larger;
}