html {
  height: 100%;
}
.container {
    box-shadow: 5px 5px;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
  background-color: #204C3D;
}
.card {
  font-family: sans-serif;
  position: relative;
  width: 175px;
  height: 300px;
  border-radius: 5px;
  border: 1px solid #ccc;
  
  font-size: 40pt;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  border: none;

}

.card.spades,
.card.clubs {
  color: black;
}
.card.hearts,
.card.diamonds {
  color: red;
}

.card-value-suit {
  display: inline-block;
  position: absolute;
}
.card-value-suit.top {
  top: 5px;
  left: 10px;
}
.card-value-suit.bot {
  transform: rotate(180deg);
  bottom: 5px;
  right: 10px;
}
.card-suit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50pt;
}

.random-btn {
  font-size: 20pt;
  padding: 13px;
  border-radius: 0.25em;
  color: #286751;
  border:none;
  font-weight: bold;
  box-shadow: 3px 3px #222222;
}

.j-deck {
  width:95%;
  height:60px;
  background-color: #ccc;
  position: absolute;
  top:0;
  left: 0;
  margin-top: 10px;
  margin-left: 10px;
}

.bordered-card{
  position: absolute;
  width:90px;
  height:95px;
  top: 0 !important;
  left: 0 !important;
  margin-top: 10px;

  font-size: 20pt;

  font-family: sans-serif;
  border-radius: 5px;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  text-align: center;
  padding-top: 25px;

  background-color: #FFFFFF;
}
.j-card {
  margin-left: 10px;  
}

.q-card {  
  margin-left: 110px;  
}

.k-card {  
  margin-left: 210px;  
}

.rule
{
  position: absolute;
  top: 75%;
  font-size: 20pt;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  font-size: 23pt;
}

.loading-content
{
  position: absolute;
  top: 85%;
  font-size: 20pt;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  font-size: 23pt;
}

.bordered-card-text{
  font-weight: bold;
  font-size: 28pt;
}


.attemps{
  position: absolute;
  top:25%;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
}

.shuffle-content{
  position: absolute;
  top:0;
  right:0;
  margin-right: 10px;
  margin-top: 10px;
  text-decoration: underline;
font-size: 16pt;
  color: rgb(37, 43, 134);
}

.reset-btn{
  width: 50px;
  height: 50px;
  background: url(reset.png) center;
  background-size: 50px 50px;
  border: none;
}
