.cardContainer {
  display: flex;
  justify-content: center;
}

.cardMiddle {
  flex-basis: 500px;
  padding: 0;
  display: flex;
  flex-grow: 0;
}

@keyframes rotateCard {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}
@keyframes rotateSideLeftSide {
  0% {
    left: 0px;
  }
  100% {
    left: calc(100% - 0px);
  }
}
@keyframes rotateSideLeftSideWidth {
  0% {
    height: 100%;
    box-shadow: 0px 0 0 0 #c2c2c2;
  }
  50% {
    height: calc(100% - 30px);
    box-shadow: 0 0 3px 15px #969696;
  }
  100% {
    box-shadow: 0px 0 0 0 #363636;
    height: 100%;
  }
}
.cardFront {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.cardFront.hidden {
  color: black;
  display: none;
}

.cardContent {
  background: var(--gradientAccent);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: white;
  font-size: 2rem;
  font-family: "Oswald", "sans-serif";
  height: 313px;
  width: 100%;
}

.rotated .cardContent {
  transform: scale(1) translateY(0px) rotate(0deg) rotateY(180deg);
  animation: linear 1s rotateCard;
}

.rotatedBack .cardContent {
  transform: scale(1) translateY(0px) rotate(0deg) rotateY(180deg);
  animation: linear 1s rotateCard reverse;
}

.cardLeftSide, .cardRightSide {
  width: 0px;
  background: #c7c7c7;
  height: 100%;
  position: relative;
  border-radius: 4px;
  z-index: 1;
  align-self: center;
}

.rotated .cardLeftSide {
  animation: cubic-bezier(0.37, 0, 0.63, 1) 1s rotateSideLeftSide, cubic-bezier(0.37, 0, 0.63, 1) 1s rotateSideLeftSideWidth;
}

.rotatedBack .cardLeftSide {
  animation: cubic-bezier(0.37, 0, 0.63, 1) 1s rotateSideLeftSide, cubic-bezier(0.37, 0, 0.63, 1) 1s rotateSideLeftSideWidth reverse;
}

.svgContainer {
  display: flex;
  justify-content: center;
  margin-top: 8rem;
}

.svgBlend {
  background: linear-gradient(114.46deg, #FF0099 0%, #493240 100%);
  position: relative;
  top: -200px;
  mix-blend-mode: overlay;
}

.cardToken {
  display: inline-block;
}

#cardWords::after {
  content: "";
  flex-grow: 1;
}

#cardWords {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cardButtonContainer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: white !important;
}

.cardButtonContainer a {
  text-decoration: underline;
  color: white !important;
}

.cardSep {
  content: "-";
}

@media screen and (max-width: 500px) {
  .cardButtonContainer {
    flex-direction: column;
    align-items: center;
  }

  .cardSep {
    display: none;
  }

  .cardContent {
    border-radius: 0;
  }

  #mainContainer {
    transform: translateY(0px) scale(1) rotate(0deg) !important;
  }

  #mainContainer.hidden {
    transform: translateY(-200px) scale(0) rotate(30deg) !important;
  }

  .cardContent {
    height: 363px;
  }

  .cardBackContent {
    flex-direction: column;
  }
  .cardBackContent .cardBackSep {
    height: 1px;
    width: 300px;
    background: none;
    box-shadow: 0px 2px 0px 1px white !important;
  }
}
#mainContainer {
  transition: transform 1.5s cubic-bezier(0.5, 1, 0.89, 1), padding-top 1.5s cubic-bezier(0.5, 1, 0.89, 1);
  transform: scale(1) translateY(0px) rotate(0deg) rotateY(0deg);
  padding-top: 0;
}

#mainContainer.hidden {
  transform: scale(0) translateY(0px) rotate(30deg);
  padding-top: 300px;
}

.cardBack {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cardBack .cardBackReturn {
  align-self: end;
  text-decoration: underline;
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 0;
  height: 0;
  overflow: visible;
  transform: translateY(-40px);
}
.cardBack .cardBackContent {
  flex-grow: 1;
}

.cardBackContent {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cardBackContent .cardBackSep {
  flex-basis: 1px;
  height: 150px;
  box-shadow: -2px 0px 0px 1px white;
}
.cardBackContent .cardBackRight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  font-size: 1.75rem;
}
.cardBackContent .cardBackRight h2 {
  font-size: 2rem;
}
.cardBackContent .cardBackRight li {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}
.cardBackContent .cardBackRight li a {
  vertical-align: middle;
}
.cardBackContent .cardBackRight li svg {
  flex-grow: 0;
  flex-shrink: 1;
  margin-right: 8px;
}

.cardBack.hidden {
  display: none;
}

#cardWords {
  max-height: 188px;
  overflow: hidden;
}

body {
  margin: 0;
  margin-bottom: 3rem;
}

.cardButton {
  text-decoration: none;
  color: white;
}

/*# sourceMappingURL=title.css.map */
