*{
    padding:0;
    margin:0;
}


body{
    background-image: url(images/1.png);
    background-position:center;
    background-size:cover;
    width: 80%;
    height: 90vh;
    color: black;
}

.container{
    width:100% ;
    height: 100vh;
    display: flex;
    /* align-items: center;
    justify-content: center; */
    padding-left: 150px;
    margin-top: 50px;
}
.calculator{
    background: #5f5656 transparent;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 50px;
    /* box-shadow: #e3e8ec -4px -2px 5px 5px; */
    
}

.calculator form input{
    border: 0;
    outline: 0;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    box-shadow:-2px -2px 10px rgba(245, 245, 245, 0.484),5px 5px 0px rgba(245, 245, 245, 0.484) ;
    margin: 8px;
    font-weight: 500;
    font-size: larger;
    color: #e3e8ec;
    background: transparent;
    cursor: pointer;
}
form .show{
    display: flex;
    justify-content: flex-end;
    margin: 20px 0;
    
}
form .show input{
    text-align: right;
    flex: 1;
    box-shadow: none;
    font-size: 40px;
    border-radius: 2px;
}

form input.total{
    width: 150px;
}

form input.func{
    color: #33fcff;
}