html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, iframe {
  vertical-align: bottom;
  max-width: 100%;
}

input, textarea, select {
  font: inherit;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@font-face {
  font-family: "Maran Orthodox Church";
  src: local("Maran Orthodox Church"), url("/fonts/maran_orthodox_church.ttf") format("ttf"), url("/fonts/maran_orthodox_church.woff") format("woff");
  font-weight: normal;
  font-display: swap;
  font-style: normal;
}
body {
  height: 100vh;
  background: rgb(63, 94, 251);
  background: #FC476C;
  background: radial-gradient(at center, #FC476C, #3F5EFB);
}

body::after {
  content: "";
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: fixed;
  z-index: -1;
  width: 1000%;
  height: 1000%;
  pointer-events: none;
}

header {
  position: fixed;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  font-family: "Maran Orthodox Church", serif;
  color: #F5E8DF;
  text-align: center;
}
header span {
  font-family: serif;
}

.spread {
  position: fixed;
  bottom: -175px;
  left: 0;
  width: calc(100% - 10rem);
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(22, minmax(5px, max-content));
  padding: 3rem;
  padding-bottom: 0;
}
.spread.spread--disabled {
  pointer-events: none;
}
@media (max-width: 1024px) {
  .spread {
    padding: 1rem;
    padding-bottom: 0;
    bottom: -75px;
  }
}
.spread__card {
  background-color: darkblue;
  background-image: url("/images/backOfCard.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  width: 200px;
  aspect-ratio: 3/5;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
  z-index: 10;
  box-shadow: -7px 2px 7px 0px rgba(0, 0, 0, 0.25);
  transform: rotateZ(3deg);
}
.spread__card:hover {
  transform: translateY(-20px) rotateZ(3deg);
}
.spread__card.card--selected {
  pointer-events: none;
  opacity: 0;
}
@media (max-width: 1024px) {
  .spread__card {
    width: 150px;
  }
}

.flip-cards-wrapper {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  padding: 5rem;
  padding-bottom: 10rem;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: all 0.5s ease;
}
.flip-cards-wrapper.flip-cards--ready {
  pointer-events: all;
}
@media (max-width: 1024px) {
  .flip-cards-wrapper {
    padding: 1rem;
  }
}

/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
  background-color: transparent;
  width: 300px;
  aspect-ratio: 3/5;
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
  transition: opacity 0.5s ease;
  opacity: 0;
  cursor: pointer;
}
.flip-card.flip-card--appears {
  opacity: 1;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
  border-radius: 20px;
}
.flip-card-inner::after {
  content: "";
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 20px;
}

.flip-card--animate .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%; /* Safari */
  backface-visibility: hidden;
  border-radius: 15px;
  overflow: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #bbb;
  color: black;
}

/* Style the back side */
.flip-card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-color: #F5E8DF;
  position: relative;
}

.number {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F5E8DF;
  border: 2px solid #282721;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  color: #282721;
  font-family: "Maran Orthodox Church";
  text-align: center;
  font-size: 18px;
}
.number p {
  transform: translateY(1px);
}

.tarot {
  width: 100%;
  height: 100%;
  border: 2px solid #282721;
  border-radius: 10px;
  overflow: hidden;
}
.tarot__image {
  height: calc(100% - 50px);
}
.tarot__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .tarot__image {
    height: calc(100% - 30px);
  }
}
.tarot__text {
  color: #282721;
  font-family: "Maran Orthodox Church";
  font-size: 24px;
  border-top: 2px solid black;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .tarot__text {
    font-size: 16px;
    height: 30px;
  }
}/*# sourceMappingURL=main.css.map */