*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    background-color: rgb(58, 56, 56);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.calculator{
    border: 2px solid rgb(253, 190, 190);
    height: 255px;
    width: 184px;
    border-radius: 10px;

    box-shadow: 0px 0px 5px 5px rgb(7, 209, 245);
}
input{
    height: 30px;
    width: 152px;
    margin: 10px;
    padding: 5px;
    font-size: 28px;
    text-align: right;
    border: 1px solid rgb(7, 209, 245);
    border-radius:  5px;
}
.operator{
    background-color: rgb(241, 193, 103);

}
.button{
    height: 60%;
    width: 90%;
    margin: 5px;
    padding: 5px;

}
button{
    height: 35px;
    width: 35px;
    border: 1px solid rgb(7, 209, 245);
    border-radius: 50%;
}
button {
    background-color: rgb(241, 193, 103);

}