.container{
    height: 150px;
    width: 100%;
}

#display{
    width: 100%;
    font-size: 72px;
    text-align: center;
    margin: 40px auto;
    font-family: "Lucida Console", Monaco, monospace;
}

.stpbuttons{
    text-align: center;

}

#startStop, #reset
{
    border-width: 1.5px;
    padding: 20px 60px;
    margin: 0 10px;
    font-size: 1.5em;
}
#startStop{
    color: #1daac1;
}
#startStop:active, #reset:active,#startStop:focus, #reset:focus {
    border-color: #1daac1;
    border-width:2px;
    }
#startStop:hover, #reset:hover {
    border-color: #105edf;
    background-color: #F5F5F5;
    color: #105edf;
    -webkit-transition: color .25s linear, background-color .25s ease-in-out, border-color .25s ease-in-out;
    -moz-transition: color .25s linear, background-color .25s ease-in-out, border-color .25s ease-in-out;
    -o-transition: color .25s linear, background-color .25s ease-in-out, border-color .25s ease-in-out;
    transition: color .25s linear, background-color .25s ease-in-out, border-color .25s ease-in-out;
    }