html{
    height: 100%;
}

body{
  //  font-family: Lato;
    font-size: 20px;
    width: 100%;
    height: 100px;
    background-image: radial-gradient(#153c00 20%, #011f00 90%);
}

#contener h2, h4, p{
    margin: 0px;
    padding: 5px;
    text-align: center;
    color: white;
}

.window {
    background: radial-gradient(#6a3100 20%, #3b1b00 90%);
    position: absolute;
    bottom: 25px;
    left: 25%;
    width: 50%;
    height: 150px;
    border-radius: 30px;
    border: 5px solid black;
    text-align: center;
    padding: 15px 0; 
}

#info p, #howmuch {
    display: block;
}

.window p{
    margin: 5px 5px 0;
    display: inline-block;
    font-size: 1em;
}
.window p a{
    padding: 5px 15px;
    border-radius: 5px;
    border: 2px solid #b4b4b4;
    text-decoration: none;
    color: white;
    background: radial-gradient(#6a6a6a 20%, #393939 80%);
}
.window p a:hover{
    color: #393939;
    background: white;
}

#hand-1{
    position: absolute;
    right: 25px;
    top: 25px;
}

#hand-2{
    position: absolute;
    left: 25px;
    top: 25px;
}

#hand-3{
    position: absolute;
    left: 25px;
    bottom: 25px;
}

#hand-you{
    position: absolute;
    right: 25px;
    bottom: 25px;  
}

#table-cards{
    position: absolute;
    left: calc(50% - 13em);
    top: calc(50% - 2.5em - 25px);
    z-index: 10;
}

#pots{
    position: absolute;
    top: 50px;
    left: 50%;
    color: white;
}

#pot-1, #pot-you{
    position: absolute;
    left: -50px;
    color: red;
}

#pot-2, #pot-3{
    position: absolute;
    right: -50px;
    color: red;
}

#pot-1, #pot-2{
    bottom: -25px;
}

#pot-3, #pot-you{
    top: -25px;
}

.pots, .coin::after{
    content: "$";
    display: inline-block;
    text-align: center;
    margin: 0px 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    background: white;
    color: black;
    border-radius: 50px;
    box-shadow: 0 0 5px 5px black;
}

footer {
    position: absolute;
    width: 200px;
    top: 45%;
    left: calc(50% - 100px);
    text-align: center;
    opacity: 0.3;    
    z-index: 1;
}
footer a{
    color: yellow;
    text-decoration: none;
}