body
{
    background-color: gray;
}
#calculatorBody
{
    background: linear-gradient(180deg, rgba(221,212,162,1) 95%, rgba(51, 51, 51, 0.315) 100%);
    width: 420px;
    height: 650px;
    border-radius: 25px;
    border: 2px solid rgb(160, 160, 160);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.541);
}
header
{
    text-align: center;
    margin-top: 25px;
    font-size: 30px;
    font-family:fantasy;
    margin-bottom: 25px;
}
#calcScreen
{
    margin: auto;
    border: 2px solid rgb(160, 160, 160);
    width:372px ;
    min-width: 372px;
    height: 110px;
    min-height: 110px;
    border-radius: 10px;
    background-color: rgba(73, 95, 58, 0.171);
    text-align:right;
    font-size: 50px;
    line-height: 60px;
}
#inputNum
{
    margin-right: 10px;
    margin-bottom: 0px;
    margin-top: 10px;
}
table
{
    display: block;
    margin: auto;
    padding-top: 20px;
    padding-left: 18px;
}
.btn
{
    width: 80px;
    height: 70px;
    margin-right: 15px;
    margin-bottom: 5px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgb(66, 66, 66) 0%, rgba(51,51,51,1) 100%, rgba(255,255,255,0) 100%);
    color: white;
    font-family: fantasy;
    font-size: 35px;
    box-shadow: 0px 2px black;
}
#ac, #ce
{
    background: rgb(133, 0, 0);
}
#zero
{
    width: 92%;
}
#equal
{
    height: 150px;
}
