html {
  background: url("felt-table.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
#dealer-hand {
  width: 70%;
  height: 180px;
  /* background-color: rgba(3, 209, 30, 0.6); */
  /* background-color: hsla(155, 91%, 44%, 0.6); */
}
#dealer-hand img {
  margin: 15px;
  visibility: hidden;
}
.bets {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 5px;
}
#table {
  display: flex;
  justify-content: left;
  align-items: left;
  flex-direction: column;
  margin: 75px;
}
#player-hand {
  width: 70%;
  height: 180px;
  /* background-color: hsla(155, 91%, 44%, 0.6); */
}
#player-hand img {
  margin: 15px;
  visibility: hidden;
}
.buttons {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: start;
  margin: 30px;
}
.buttons button {
  margin: 10px;
  height: 25px;
  width: auto;
  border-radius: 12px;
}
.buttons button:hover {
  background-color: yellow;
  cursor: pointer;
}
.alert {
  padding: 20px;
  background-color: #f44336;
  color: white;
}
.alert.success {
  background-color: #4caf50;
}
.alert.info {
  background-color: #2196f3;
}
.alert.warning {
  background-color: #ff9800;
}
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;

  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;

  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;

  visibility: visible !important;
}

@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }
  30% {
    transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    transform: translateY(2%) scaleX(0.5);
  }
  50% {
    transform: translateY(0%) scaleX(1.1);
  }
  60% {
    transform: translateY(0%) scaleX(0.9);
  }
  70% {
    transform: translateY(0%) scaleX(1.05);
  }
  80% {
    transform: translateY(0%) scaleX(0.95);
  }
  90% {
    transform: translateY(0%) scaleX(1.02);
  }
  100% {
    transform: translateY(0%) scaleX(1);
  }
}

@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }
  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }
  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }
  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }
  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }
  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }
  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }
  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }
  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}

@media only screen and (min-width: 600px) {
  #player-hand img {
    margin: 15px;
    visibility: hidden;
    width: 100px;
  }
  #dealer-hand img {
    margin: 15px;
    visibility: hidden;
    width: 100px;
  }
}
