body
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container p
{
    color:#56baed;
    position: absolute;
    left:42%;
    top:10px;
    font-size: 25px;
    font-family:Georgia, 'Times New Roman', Times, serif;
}

.container
{
    width: 100%;
    height: 100vh;
    background-image:linear-gradient(rgb(38, 37, 37),lightgray,white);
    display: flex;
    align-items: center;
    justify-content: center;


}

.calculator
{
    background-color:#3a4452;
    padding:20px;
    border-radius: 25px;
    border: 3px solid black;
}


.calculator form input{
    border: 0;
    outline: 0;
    width:60px;
    height:60px;
    border-radius: 15px;
    box-shadow: -4px -4px 10px rgba(255,255,255,0.2),5px 5px 15px rgba(0,0,0,0.2);
    background-color: transparent;
    font-size: 20px;
    cursor:pointer;
    border: 3px solid black;
    color: #fff;
    margin:10px;
    padding:10px;
}

.calculator form input:hover
{
    color: #56baed;
}

form .display
{
    display: flex;
    justify-content: flex-end;
    margin:15px 0;
}

form .display input
{
    text-align: right;
    flex: 1;
    font-size: 30px;
    box-shadow: none;
    border: 2px solid white;
}

form input.equal
{
    width:145px;
    

}

form input.specialsymbol
{
    color: rgb(7, 210, 242);
}
