/* fog background from https://codepen.io/camstephensdomo/pen/PVqpaP */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {

background-image: url(bgx.jpg);
}

.jumbotron {
  background-color: #22222211;
}

#card-deck img {
  width: 100%;
  margin-bottom: 20px;
}

#card-deck p{
  color: #ffffff;
  font-size: 1.3em;
}

#card-deck .reading{
  border: 2px solid #ffffff;
  border-radius: 10px;
  background-color: #22222288;
  padding: 25px;
}

#explore-tarot-display img {
  width: 100px;
  margin: 10px;
}

.modal-content {
  color: #ffffff;
  text-align: center;
  background-color: #222222;
  border: 5px solid #222222;
}

.modal-content hr {
  background-color: #ffffff;
}

#tarot-modal-row .col-7 {
  padding: 25px 50px 25px 25px;
  font-size: 1.2em;
}


footer {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 75px;
  margin: 10px;
}

footer p {
  color: #663399;
  background-color: #222222;
  width: 100%;
  text-align: center;
  margin: 0px;
}

footer img {
  width: 100%;
  border: 1px solid #222222;
}

footer img:hover {
  border: 1px solid #663399;
}

#fog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  background-attachment: fixed;

}
#fog:before, #fog:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 300%;
  background-size: contain;
  background-position: center;
}
#fog:before {
  background-image: url("https://res.cloudinary.com/dkr52htco/image/upload/v1536173269/fog-1.png");
  animation: drift 60s linear 0s infinite;
}
#fog:after {
  background-image: url("https://res.cloudinary.com/dkr52htco/image/upload/v1536173269/fog-2.png");
  animation: drift 25s linear 0s infinite;
}
@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-200vw, 0, 0);
  }
}