body {
    background-color: black;
}

h1 {
    color: antiquewhite;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    padding-bottom: 10px;
}

#calc-main {
    padding-top: 20px;
    margin: 0 auto;
    width: 500px;
    height: 685px;
    border-radius: 10px;
    outline: 7px solid rgb(214, 137, 64);
    background-color: rgb(249, 220, 183);
    
}

#calc-disp {
    margin: 0 auto;
    width: 450px;
    height: 100px;
    background-image: linear-gradient(135deg, gray -85%, white 55%, gray);
    border-radius: 10px;
    outline: 5px solid gray;
}

#numbDisplay, #operatorDisplay, #numbTwoDisplay, #answerDisplay {
    margin: 0;
    margin-top: 35px;
    margin-right: 5px;
    float: right;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 60px;
}


#calc-btns {
    margin-top: 25px;
}


#C {
    margin-left: 45px;
    width: 75px;
    cursor: pointer;
    font-size: 45px;
    text-decoration: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: rgb(214, 137, 64);
    border-radius: 2px;
    outline: 4px solid gray;
}

.rows {
    padding: 25px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    text-decoration: none;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}

.buttons {
    cursor: pointer;
    font-size: 65px;
    text-align: center;
    width: 75px;
    height: 75px;
    background-color: antiquewhite;
    border-radius: 2px;
    outline: 4px solid gray;
}

.operators {
    cursor: pointer;
    font-size: 65px;
    text-align: center;
    width: 75px;
    height: 75px;
    background-color: antiquewhite;
    border-radius: 2px;
    outline: 4px solid gray;
}

#operate {
    cursor: pointer;
    font-size: 65px;
    text-align: center;
    width: 75px;
    height: 75px;
    background-color: antiquewhite;
    border-radius: 2px;
    outline: 4px solid gray;
}