body {
    font-family: 'Segoe UI', 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e7e7e7;

}

html,
body {
    height: 100%;
}

.mainContainer {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    min-width: 400px;
    min-height: 400px;
    width: 800px;
    height: 800px;
    background-color: #e7e7e7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculatorBackground {
    width: 400px;
    height: 600px;
    background-color: #262626;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.calculatorDisplay {
    width: 400px;
    height: 200px;
    background-color: #5d5d5d;
    border-radius: 10px 10px 0px 0px;
    font-size: 70px;
    font-weight: regular;
    color: white;
    display: flex;
    align-items: end;
    justify-content: end;

}


.operaciones {
    padding: 5px;
    overflow: hidden;
    white-space: nowrap; 
    text-overflow: ellipsis; 
}

.calculatorButtons {
    width: 400px;
    height: 400px;
    background-color: #262626; /*Blue*/
    border-radius: 0px 0px 10px 10px;
    display: flex;
    flex-wrap: wrap;
    font-weight: bold;
    font-size: x-large;
}

#zero {
    width: 196px;
}

#result {
    background-color: #db751b;
}

.operation {
    background: #3d3d3d;
}

.number {
    background: #b0b0b0;
}

.btnGeneric {
    color: white;
    border: none;
    width: 98px;
    height: 76px;
    margin: 2px 1px;
    font: inherit;
    cursor: pointer;
    border-radius: 10px;
}

