html {
/* margin: auto; */
}

body {
  width: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-image: url("../images/backgrounds/classic.png");
  background-size: cover;
  zoom: 1.75;
}

.content {
  width: 600px;
  overflow: hidden;
  position: absolute;
  margin: auto;
}

.toprow {
  display: flex;
  justify-content: space-between;

}

.tableau {
  display: flex;
  justify-content: space-between;  

}

.stack {
  display: flex;
  flex-direction: column;
  column-gap: -50px;
}
.spacer {
  width: 64px;
  height: 88px;
  margin: 5px 5px 50px 5px;
  box-sizing: border-box;
  display: inline-block;

}

.bottom {
  position: fixed;
  top: 60%;
  left: -15%;
  width: 100%;
  height: 23px;
}

.win {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  font-size: 50px;
  position: asbolute;
  color:rgba(255, 255, 255, 1);
  opacity: 0;
  font-family: helvetica, arial, sans-serif;
  z-index: -1;
  user-select: none;


}

.game {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: asbolute;
  top: 10%;

}

.themes {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: asbolute;
  top: 10%;

}

.theme {
  font-size: 10px;
  text-align: center;
  margin: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* background-color:rgba(198, 198, 198, 0.65); */
  background:conic-gradient(#d7d7d7, #c3c3c3, #cccccc, #c6c6c6,
								#d7d7d7, #c3c3c3, #cccccc, #c6c6c6,
								#d7d7d7, #c3c3c3, #cccccc, #c6c6c6,
								#d7d7d7, #c3c3c3, #cccccc, #c6c6c6);

}
.theme > span {
  user-select: none;

}

.theme:hover {
  box-shadow: inset 0 0 10px rgba(255, 255, 255, .5), 0 0 10px rgba(255, 255, 255, .2);

}

.theme.classic:hover {
  background: url("../images/icons/classic-icon.png");
  background-size: auto;
  color: #fff;
  text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}
.theme.pokemon > span {
  margin-left: -4px;
}
.theme.pokemon:hover {
  background: url('../images/icons/pokemon-icon.png');
  color: #fff;
  text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}

.theme.alice:hover {
  background: url('../images/icons/alice-icon.png');
  color: #fff;
  text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}
.theme.space:hover {
  background: url('../images/icons/space-icon.png');
  color: #fff;
  text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
}



.btn {
color: rgb(0, 0, 0);
cursor: pointer;
display: block;
font-size:16px;
font-weight: 400px;
line-height: 40px;
margin: 10px;
max-width: 160px; 
text-decoration: none;
text-transform: uppercase;
width: 100%;
background-color:rgba(255, 255, 255, 0.75);
}

.btn {
  border: 1 solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  outline: 1px solid;
  outline-color: rgba(255, 255, 255, .5);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
} 

.btn.winGame:hover {
  border: 2px solid;
  border-color:rgb(0, 145, 255);
  /* box-shadow: inset 0 0 5px rgb(255, 255, 255), 0 0 5px rgb(255, 255, 255); */
  outline-color: rgb(0, 145, 255);
  outline-offset: 1px;
  text-shadow: 1px 1px 2px #427388;
  background-color:rgb(255, 255, 255);
}

.btn.newGame:hover {
  border: 2px solid;
  border-color:rgb(0, 255, 157);
  /* box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.5), 0 0 5px rgba(255, 255, 255, 0.2); */
  outline-color: rgb(0, 255, 157);
  outline-offset: 1px;
  text-shadow: 1px 1px 2px #427388;
  background-color:rgb(255, 255, 255);
  }

.card.revealed:hover {
  color: rgba(255, 255, 255, 1);
  transform: scale(1.05,1.05);

 }

