.calculator{
    height: 500px;
    width: 300px;
    margin: auto;
    display: flex;
    flex-direction: column;
    background-color: grey;
    padding: 20px
}
.operatorsRow{
    display: flex;
    flex-direction: row;
}
.numbersRow{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 10px 0;
}
.number{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    width: 70px;
    font-size: 40px;
    background-color: whitesmoke;
    cursor: pointer;
}
.operatorsRow{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 10px 0;
}
.operator{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    font-size: 40px;
    background-color: whitesmoke;
    cursor: pointer;
}
.display{
    background-color: whitesmoke;
    height: 50px;
    font-size: 50px;
    margin-bottom: 20px;
}
.delete{
    font-size: 20px;
}