body{
    display: flex;
    justify-content: center;
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-size: 25px;
    font-family:'Share Tech', sans-serif;
}


.containerOperadores{
    display: flex;
    flex-wrap: wrap;
    margin: 5px;
    width: 220px;
    height: 400px;

}

.operadores{
    width: 100px;
    height: 100px;
    text-align: center;
    text-align: center;
    line-height: 105px;
    background: #c9c9c971;
    cursor: pointer;
    margin: 4px;
    box-shadow: 0px 0px 10px 1px rgba(96, 96, 96, 0.626);
    transition: transform .25s ease;

}

.resultado{
    height: 100px;
    width: 208px;
    line-height: 100px;
}

.containerNumeros{
    display: flex;
    flex-wrap: wrap-reverse;
    width: 450px;
    margin: 5px;
}

.number{
    width: 140px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    background: #c9c9c971;
    cursor: pointer;
    margin: 4px;
    box-shadow: 0px 0px 10px 1px rgba(96, 96, 96, 0.626);
    transition: transform .25s ease;

}
.cero{
    width: 288px;
}


.calculadora{
    display: flex;
    flex-wrap: wrap;
    background: #c0c0c0;
    width: 780px;
    justify-content: center;
    margin-top: 20px;
}

.containerPantalla{
    width: 720px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pantalla{
    width: 700px;
    height: 150px;
    background: rgb(145, 147, 147);
}

.total{
    font-size: 50px;
    text-align: right;
    display: inline-block;
    width: 100%;
    margin-top: 45px;
    transform: translateX(-50px);
}

.number:hover{
    transform: scale(1.06);
}

.operadores:hover{
    transform: scale(1.06);
}

.resultado{
    background: rgb(60, 159, 201);
}

.multiplicacion{
    background: rgb(233, 56, 24);
}