body{
        font-family: 'Lato', sans-serif;
    }
    #calculator-container{
        background-color:  #E0A96D;
        width: 240px;
        margin: 0 auto;
        border-radius: 10px;
    }
    #second-part{
        display: grid;
        grid-template-columns: 2fr 1fr;
        padding: 0 14px;
        gap: 4px;
    }
    #calculator-header{
        color:  #201E20;
        text-align: center;
        padding: 14px;
        font-size: 27px;
    }
    #remove-values{
        background-color:  #201E20;
        color: #DDC3A5;
        width: 50px;
        padding: 0 auto;
        text-align: center;
        font-size: 35px;
        height: 50px;
        border-radius: 10px;
        align-items: center;
        border-style: none;
    }
    #result{
        height: 50px;
        width: 158px;
        margin: 0 auto;
        background-color: #DDC3A5;
        border-radius: 10px;
        color: #201E20;
        border-style: none;
        font-size: 23px;
    }
    #operators{
        background-color:   #DDC3A5;
        border-style: none;
        color: #201E20;
        text-align: center;
        width: 50px;
        height: 50px;
        border-radius: 10px;
        
    }
    table{
        margin: 0 auto;
        padding: 6px;
    }

