body{
  background-image: url('assets/backgroundImages/backgroundTiger.gif');
}
body, html{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.page{
  justify-self: center;
  position: relative;
  width: 80dvw;
  height: auto;
  color: white;
  nav{
    display: flex;
    justify-content: center;
    background-color: rgba(0,0,0,.5);
    background-image: url('assets/backgroundImages/backgroundStars.gif');
    border: 2px solid white;
    width: auto;
    height: 5dvh;
    a{
      margin: auto;
      position: relative;
      text-decoration: none;
      color: white;
    }}
  .container{
    background-color: rgba(0,0,0,.5);
    background-image: url('assets/backgroundImages/backgroundStars.gif');
    border: 2px solid white;
    width: auto;
    height: 80dvh;
    margin-top: 10px;
    text-align: center;
    display: grid;
    overflow: scroll;
    table{
      justify-self: center;
      text-align: start;
    }
  }
  footer{
    background-color: rgba(0,0,0,.5);
    background-image: url('assets/backgroundImages/backgroundStars.gif');
    border: 2px solid white;
    width: auto;
    height: 10dvh;
    overflow: hidden;
    margin-top: 10px;
    .tigerFake{
      animation: runTiger 10s linear infinite alternate;
      height: inherit;
      width: inherit;
      .tiger{
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: contain;
        margin-left: auto;
        display: block;
        transform: scaleX(-1);
}}}}

@keyframes runTiger{
  0% {
    transform: translateX(-60%);
  }
  100% {
    transform: translateX(60%);  
  }
}

.zodiacs{
  display: flex;
  place-items: center;
  height: 5dvw;
  width: auto;
  #selectZodiac{
    object-fit: contain;
    margin: auto;
    height: 100%;
  }
  #selectZodiac:hover{
    border: 2px solid red;
  }
}

.cards{
  display: flex;
  height: 20dvw;
  width: auto;
  margin: auto;
  gap: 1dvw;
  #select{
    height: 10dvw;
    width: 8dvw;
    border-radius: 15px;
  }
  #select:hover{
    border: 2px solid red;
  }
  #unselect{
    width: 9dvw;
    margin: auto;
    border-radius: 18px;
  }
}
h3{
  font-size: 1.2dvw;
}
.runTarotButton{
  margin-top: -15dvh;
  justify-self: center;
  position: relative;
  width: 5dvw;
  image-rendering: pixelated; 
  image-rendering: crisp-edges;
}