@charset "utf-8";

* {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    font-size: 41px;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}
.calc {
    background-color: rgba(204,201,201,1.00);
    border-radius: 14px;
    width: 400px;
    padding-top: 41px;
    padding-right: 41px;
    padding-bottom: 41px;
    padding-left: 41px;
    margin-top: 14px;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
}
.calc form .calc-display {
    background-color: rgba(161,175,177,1.00);
    border: medium inset rgba(170,173,176,1.00);
    border-radius: 5px;
    box-shadow: inset 0px 0px 7px 0px;
    margin-bottom: 41px;
    padding-left: 7px;
    padding-top: 7px;
    padding-right: 7px;
    padding-bottom: 7px;
    width: 100%;
    text-align: right;
}

input[type=button]{
    width: 75px;
    height: 75px;
    margin: 4px;
    color: #fff;
    border: outset hsla(0,0%,56%,0.83);
    border-radius: 7px;
    background-color: #58595b;
    text-shadow: 0px 0px;
    box-shadow: 1px 1px 2px;
    cursor: pointer;
    text-align: center;
    float: right;
}
input[type=button]:active{
    border-style: inset;
    border-width: medium;
    border-radius: 8px;
    box-shadow: 1px 1px 2px hsla(0,1%,48%,0.74);
}


