#game-container {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    background-color: #009900;
    width: 100%;
    margin: 0 auto;
}

/* HEADER STYLES */
#poker {
    height: 150px;
}
#title {
    display: inline;
    font-size: 40px;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px;
    border: none;
    font: normal 41px/normal 'Merriweather', serif;
    color: yellow;
    text-align: center;
    -o-text-overflow: clip;
    text-overflow: clip;
    white-space: pre;
    text-shadow: 0 0 10px rgba(255,255,255,1) , 0 0 20px rgba(255,255,255,1) , 0 0 30px rgba(255,255,255,1) , 0 0 40px #7700ff , 0 0 70px #7700ff , 0 0 80px #ff002e , 0 0 100px #7700ff ;
    -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    margin-top: 30px;
    margin-bottom: 30px;
}
#messages h2 {
    margin: 0;
    padding-top: 30px;
    color: yellow;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
}

/* TABLE STYLES */
#table {
    margin: auto;
    height: 440px;
    width: 100%;
    border-radius: 40px;
}
#dealer-hand, #player-hand {
    width: 50%;
    height: 100px;
    margin: auto;
}
#dealer-label, #player-label {
    display: block;
    color: yellow;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    width: 50%;
    margin: 10px auto 10px;
}

/* BUTTON STYLES */
#deal-button {
    position: relative;
    color: white;
    text-decoration: none;
    background-color: red;
    font-weight: 700;
    font-family: 'Yanone Kaffeesatz';
    font-size: 2em;
    display: block;
    padding: 4px;
    border-radius: 8px;
    margin: 20px auto;
    width: 130px;
    text-align: center;
    margin-bottom: -20px;
    border: none;

    -moz-transition: all .1s ease;
    transition: all .1s ease;
}
.buttons button {
    position: relative;
    color: #003000;
    text-decoration: none;
    background-color: yellow;
    font-weight: 700;
    font-family: 'Yanone Kaffeesatz';
    font-size: 2em;
    display: inline;
    padding: 4px;
    border-radius: 8px;
    margin: 20px auto;
    width: 130px;
    text-align: center;
    margin-bottom: -20px;
    border: none;

    -moz-transition: all .1s ease;
    transition: all .1s ease;
}
.buttons button:hover {
    opacity: 0.7;
    transition: 1s;
    cursor: pointer;
}
.buttons button:focus {
    outline: none;
    border: none;
}

.disabled {
    pointer-events: none;
    opacity: 0.3;
}

/* CARD STYLES */
.hand img {
    text-align: left;
    padding-top: 5px;
    height: 200px;
    width: auto;
    margin-left: -20px;
}
.hand :first-child {
    margin: 0;
}

/* BET STYLES */
.betting {
    margin: 0 auto;
    height: auto;
    width: 98%;
    background-color: #d9dbdd;
    border-radius: 15px;
    padding: 10px;
}
.betting div {
    display: inline-block;
}
.betting img {
    height: 80px;
    margin-top: 8px;
    margin-right: 18px;
}
.betting img:hover {
    cursor: pointer;
}
.bet-square {
    float: left;
    margin-left: 42px;
}
.pot-square {
    float: right;
    margin-right: 47px;
}
.bet-square, .pot-square {
    font-weight: 800;
    font-size: 23px;
    margin-top: -8px;
    width: 100px;
    letter-spacing: 0.1em;
    color: #484e56;
    text-transform: uppercase;
}
#pot, #bet {
    margin-top: -24px;
    margin-left: -5px;
}

#outofmoney {
    display: inline;
    font-size: 14px;
    color: yellow;
}

/* MEDIA QUERIES */
@media (max-width: 650px) {
    #poker {
        height: 120px;
    }
    h1 {
        font-size: 23px
    }
    h2 {
        font-size: 20px;
    }
    #table {
        border-radius: 5px;
        height: 376px;
    }
    #table, .buttons, .betting {
        width: 100%;
    }
    #dealer-hand, #player-hand {
        height: 75px;
    }
    .hand img {
        margin-left: -15px;
    }
    #dealer-hand, #player-hand, #player-label, #dealer-label {
        width: 95%;
    }
    #player-label, #dealer-label {
        margin-left: 10px;
    }
    .buttons button {
        margin-top: 18px;
        font-size: 13px;
        width: 22.5%;
        padding: 12px 0px;
    }
    #doubledown {
        padding-top: 11px;
    }
    .betting {
        margin-top: 6px;
        height: 154px;
        border-radius: 5px;
    }
    .bet-square, .pot-square {
        margin: 0;
        float: none;
        width: 200px;
    }
    .bet-square {
        margin-top: 5px;
    }
    .bet-square p, .pot-square p {
        margin: 0;
        font-size: 20px;
        display: inline-block;
    }
    #bet, #pot {
        margin-left: 2px;
    }
    .betting img {
        height: 67px;
        margin-top: 10px;
        margin-right: 3px;
    }
}