*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.container{
    width: 100%;
    height: 100vh;
    background: rgb(129, 237, 237);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator{
    padding: 20px;
    border-radius: 10px;
    background: #142f44;
}

.calculator form input{
    border: 0;
    outline: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    border-radius: 50%;
    background: transparent;
    font-size: 20px;
    color: #fff;
    margin: 5px;
    background-color: #414141;

}

#operator{
    background-color:  #ff5733;
}

form .display{
    display: flex;
    justify-content: flex-end;
    margin: 20px 0;
}

form .display input{
    text-align: right;
    flex: 1;
    font-size: 45px;
    box-shadow: none;
    border-radius: 5px;
}

form input.equal{
    width: 145px;
    border-radius: 5px;
}