* {
  box-sizing: border-box;
}

#blackJackBoard {
    width: 1400px;
    height: 700px;
    background-color: green;
    border-bottom-left-radius: 800px;
    border-bottom-right-radius: 800px;
    position: relative;
    float: left;
}

#dealer {
    position: absolute;
    top: 50px;
    left: 550px;
    border: solid white 1px;
    height: 200px;
    width: 300px;
}

#player {
    position: absolute;
    bottom: 50px;
    left: 550px;
    border: solid white 1px;
    height: 200px;
    width: 300px;
}

input {
    display: block;
    height: 100px;
    width: 225px;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}

img {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}
