.pokerrules {
  margin-left: 5%;
  margin-right: 5%;
}

ul.pokerrules li {
  margin: 0 0 10px;
	padding: 0 0 0 40px;
	list-style: none;
	background-image: url("../imgs/logo/favicon.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 18px;
}

.pokerTitle  {
  text-align: center;

}

.jackpotContanier {
  width: 100vw;
}

.jackpot {
  background-image: url('../imgs/poker/jpframe.gif');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}

.jackpot h3 {
  font-size: 1.2rem;
  margin: 0;
}

.jackpotDisplay {
  padding: 10rem 0 10rem 0;
}

@media (max-width: 55em) {
  .jackpotDisplay {
    padding: 5rem 0 5rem 0;
  }
}

.prize {
  margin-bottom: 4rem;
}

.prize:first-child {
  margin-top: 8rem; /* Adjust the margin-top to move the first prize div down */
}


.jackpotButton {
  display: flex;
  justify-content: center;
}

  
/* Rewards section */
.rewards {
  margin-bottom: 3rem;
}

.rewards h1 {
  padding-bottom: 2rem;
}
  
.rewards li {
  padding-bottom: 0.3rem;
}
  
.rewards h2 {
  margin: 1rem 0rem 1rem 0rem;
}  

/* Points section */
.points h1 {
  padding-bottom: 3rem;
}

/* Rules Section */
#rules button {
  margin-left: 5%;
}

#rules h2 {
  padding-bottom: 3rem;
  text-align: center;
}

#pokerDealer {
  margin-top: 10rem;
}


/*--------------------------------------------------------*/
/*	Countdown to poker */
/*--------------------------------------------------------*/

#countdown {
  width: 100%;
  display: flex;
  justify-content: center;
}

#countdown .container {
  width: 100%;
}

#countdown video {
  width: 80%;
  display: block;
  margin: 5rem auto;
}

#countdown h2 {
  margin-top: 16rem;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: white; /* Set the color you want */
  font-size: clamp(1rem, 6vw, 3rem); /* Adjust the font size as needed */
}

#poker {
  padding-top: 10rem;
}

@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0);
  }
  100% {
    transform: perspective(400px) rotateY(360deg);
  }
}

.jackpotDisplay .spin {
  animation: flip 1s;
  transform-origin: center;
}