* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

#calculator {
    width: 450px;
    background-color: #292828e5;
    margin: 0 auto;
    margin-top: 10%;
    padding: 10px;
    overflow: hidden;
    border-radius: 11px;
}

body {
    background-image: linear-gradient(to right, #35353580, #6e6d6d);
}

.div-all-content {
    width: 100%;
    margin: 0 auto;
}

.div-all-btn {
    margin-left: 1.5%;
}

#display {
    height: 55px;
    width: 97%;
    margin: 0 auto;
    border: 1px solid #A7AF7C;
    font-size: 1.7em;
    background-color: #A7AF7C;
    padding: 11px 8px;
    border-radius: 8px;
    margin-bottom: 18px;
    margin-top: 10px;
    text-align: right;
}

.btn {
    color: #fff;
    position: relative;
    float: left;
    width: 21.5%;
    height: 60px;
    margin: 1%;
    margin-left: 9px;
    text-align: center;
    padding-top: 12px;
    background: linear-gradient(180deg, #2f2f2f, #3f3f3f);
    box-shadow: inset -8px 0 8px rgba(0, 0, 0, 0.15), inset 0 -8px 8px rgba(0, 0, 0, 0.25), 0 0 0 2px rgba(0, 0, 0, 0.75), 10px 20px 25px rgba(0, 0, 0, 0.4);
    user-select: none;
    cursor: pointer;
    font-weight: 400;
    border-radius: 10px;
}

.btn-tag-i {
    position: relative;
    font-size: 1.5em;
}

.btn:active {
    box-shadow: 1px 1px 5px #000 inset;
    padding: 11px 6px;
}

#btn-equals {
    background: #33a1fcf5;
}

#btn-clear {
    background: #ff0000f1;
}

#btn-plus,
#btn-mul,
#btn-div,
#btn-minus {
    background: #ffbb00e3;
}

#btn-mul {
    padding-top: 14px;
    font: caption;
    font-style: normal;
}

#btn-clear-last-action,
#btn-back-space {
    background: #ca2691;
}

.btn-number,
#btn-pint,
#btn-pn {
    background: #474948;
}