/* cool beans*/
/* layout.css */
*{box-sizing:border-box;}
div#wrapper {
    padding: 0px;
    width: 830px;
    height: 700px;
    overflow: auto;
    margin: 0 auto;
}
div#left,#playerArea {
    display: inline-block;
    height: auto;
    float: left;
    /*padding-right: 15px;*/
    /*overflow: auto;*/
    margin: 0px auto;
}
div#right,#dealerArea {
    display: inline-block;
    height: auto;
    float: right;
    margin-left: 10px;
    /*overflow: auto;*/
    margin: 0px auto;
}
div#results,#controlButtons {
    display: inline-block;
    height: 50px;
    padding: 0px;
    margin: 0px auto;
}
#playerArea,#dealerArea,#controlButtons {
    width: 48.9%;
    background-color: lightgrey;
    margin-top: 15px;
}
img {
    /*width: 50px;
    height: 50px;
    width: 150px;
    height: 250px;
    display: block;
    margin-left: auto;
    margin-right: auto;*/
}
img#dealer,#player {
    width: 290px;
    height: auto;
    margin: 10px;
}
html {
    background-color: powderblue;
    /*background-image:url('http://blog.visme.co/wp-content/uploads/2017/07/50-Beautiful-and-Minimalist-Presentation-Backgrounds-03.jpg'); */
    background-repeat:no-repeat;
    background-position:center center;
    background-attachment: fixed; /* we don't want it to scroll */
    background-size: cover;
}
