
.my-iphone-outline{
    width: 500px;
    height: 1000px;

    border-color: #aba899 #c4b89e silver #c4a688;
    border-radius: 60px 60px 60px 60px;
    border-style: solid;
    border-width: 10px;

    background-color: whitesmoke;
    padding: 20px;
}
.my-iphone-inner-camera{
    height: 10px;
    width: 10px;
    background-color: black;
    border-radius: 60px 60px 60px 60px;
}
.my-iphone-sensor{
    height: 5px;
    width: 5px;
    background-color: black;
    border-radius: 60px 60px 60px 60px;
}
.my-iphone-mic{
    width: 100px;
    height: 6px;
    background-color: black;
    border-radius: 60px 60px 60px 60px;
}
.my-iphone-screen{
    height: 800px;
    width: 100%;
    background-color: black;
}
.my-iphone-home-button{
    width: 70px;
    height: 70px;

    border-color: #aba899 #c4b89e silver #c4a688;
    border-radius: 60px 60px 60px 60px;
    border-style: solid;
    border-width: 5px;

    background-color: whitesmoke;
    padding: 20px;
}


.calculation-result-box{
    width: 100%;
    height: 260px;
    color: white;

    display: flex;
    justify-content: end;
    justify-items: end;

    padding: 30px;
    font-size: 80px;
}

.calculation-buttons div {
    width: 80px;
    height: 80px;

    border-radius: 60px 60px 60px 60px;

    padding: 20px;
    margin: auto;

    justify-items: center;
    text-align: center;
    font-size: 28px;

    transition: all .001s;
    user-select: none;
}
.calculation-buttons div:active{

    box-shadow: 0 0 30px rgba(255, 255, 255, .6) inset;
}
.gray-buttons div{
    background-color: rgb(155, 155, 155);
    color: rgb(15, 15, 15);
}
.black-buttons div{
    background-color: rgb(45, 45, 45);
    color: white;
}
.orange-buttons div{
    background-color: rgb(253, 139, 37);
    color: white;
}