body{
    background: lightskyblue;
}




#canvas{
    box-sizing:border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00d6ff;
    width: 700px;
    height: 300px;
    margin: 50px auto;

    margin-top: 200px;
    border-radius: 10px;
   
}

#primary-number, #secondary-number{
    display:flex;
    align-items:center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    width: 125px;
    height: 125px;
    box-sizing: border-box;
}

#primary-number{
    border: solid 4px #806100;
    border-radius: 20px;
}

#secondary-number{
    border: solid 4px blue;
    border-radius: 20px;
}

#add, #equal{
    font-weight: bold;
    font-size: 40px;
    padding: 5px;
}
input{
    border: solid 2px cyan;
    width: 150px;
    height: 30px;
    padding-left: 25px;
}

button{
    width: 100px;
    height: 35px;
    margin: 5px;
    background: #d48080;
    color: white;
    border: 1px solid lightgrey;
}