.container {
  position: relative;
  width: 50%;
}

.image {
  display: block;
  width: 85%;
  height: auto;
  
}

body{
  background-image:url("/stamps/huxbg.jpg");
  width:90%;
}

table{
  width:80%;
  margin:auto;
}
#bg{
  background-color:rgba(227, 194, 246, 0.9);
}
#info{
  padding:10px;
  color:#e4d7fa;
}

#blinkie{
  float: right;
  width:30%;
  margin:50px;
  padding:20px;
}
p{
  font-family:"Bitcount";
  font-size:30px;
}
span{
    font-family:"DotGothic16";
    font-size:25px;
}

.card {
  width: 400px;
  height: 450px;
  margin: 1rem auto;
  perspective: 1000px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}

.card-back {
  transform: rotateY(180deg);
}
