.container{
    max-width: 400px;
    margin: 10vh auto 0 auto;
    box-shadow: 0px 0px 43px 17px rgb(25, 39, 25);
}
#display{
    text-align: right;
    height: 70px;
    line-height: 70x;
    padding: 16px 8px;
    font-size: 25px;
}
.buttons{
    display: grid;
    border-bottom: 1px solid #999;
    border-left: 1px solid #999;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.buttons > div {
    border-top: 1px solid #999;
    border-right: 1px solid #999;
}
.button{
    border: 0.5px solid#999;
    line-height: 100px;
    text-align: center;
    cursor: pointer;
}
#equal {
    background-color: rgb(184, 75, 36);
    color:white;
}
.button:hover {
    background-color: rgb(53, 49, 49);
    color: blanchedalmond;
    transition:0.5s ease-in-out;
}
#Clear{
    background-color: rgb(134, 24, 24);
}
.author {
    text-align: center;
    font-family: Share Tech Mono, sans;
    margin-top: 1px;
    
    
  }