body{
    background-color: rgb(60, 83, 65);
    zoom: 70%;

}

.Calculator-box{
    height: 820px;
    width: 460px;
    background-color: rgb(47, 56, 39);
    border: 2px solid rgb(33, 44, 30);
    box-shadow: 5px 5px 25px rgb(49, 47, 47);
    margin: auto;
    margin-top: 80px;
    padding-left: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 40px;
}

.Output{
    width: 410px;
    color: rgb(255, 255, 255);
    height: 50px;
    font-size: 45px;
    font-family: "Outfit";
    font-weight: bold;
    background-color: rgb(71, 99, 17);
    text-align: right;
    padding-top: 35px;
    padding-bottom: 20px;
    padding-right: 20px;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: 2px 2px 10px rgb(101, 97, 97);
    box-shadow: 2px 2px 10px rgb(39, 39, 39) inset;
}

.type-1, .type-2, .type-3, .type-4, .type-5{
    width: 96px;
    height: 96px;
    border: none;
    border-radius: 50%;
    font-size: 30px;
    font-family: "Outfit";
    margin: 5px 5px;
    cursor: pointer;
    transition-duration: 0.15s;
    box-shadow: 2px 2px 10px rgb(144, 140, 140);
    box-shadow: 2px 2px 10px rgb(39, 39, 39) inset;
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

.type-1{
    background-color: rgb(56, 70, 30);
    color: white;
}

.type-2{
    background-color: rgb(162, 185, 118);
    color: black;
}

.type-3{
    background-color: rgb(105, 133, 36);
    color: rgb(217, 224, 118);
    font-size: 40px;
    height: 90px;
    width: 210px;
    border-radius: 34px;
}

.type-4{
    background-color: rgb(71, 197, 176);
    color: rgb(0, 0, 0);
}

.type-5{
    background-color: rgb(54, 166, 194);
    color: white;
    border-radius: 30%;
}




.type-1:active{
    background-color: rgb(38, 53, 32);
    border-radius: 40%;
}

.type-2:active{
    background-color: rgb(255, 236, 64);
    border-radius: 40%;
}

.type-3:active{
    background-color: rgb(132, 165, 48);
    border-radius: 50px;
}

.type-4:active{
    background-color: rgb(94, 255, 228);
    color: white;
    border-radius: 40%;
}

.type-5:active{
    background-color: rgb(75, 219, 255);
    color: rgb(0, 0, 0);
    border-radius: 50%;
}

.p{
    margin: auto;
    height: 30px;
    width: 290px;
    margin-bottom: 20px;
    font-size: 35px;
    font-family: "Outfit";
    letter-spacing: 5px;
    font-weight: 900;
    color: rgb(255, 255, 255);
}
