* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  background-color: #000;
}
/* WEB PAGE STYLE */
h2,
h3 {
  color: #2c3e50;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.5rem;
  margin-top: 20px;
  border-bottom: 2px solid #4a3b34;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

/* Section Styling */
#arcana-22 {
  max-width: 900px;
  margin: 40px auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Individual Section Styling */
.who-you-are,
.life-path,
.recommendations,
.life-themes,
.affirmation {
  margin-bottom: 30px;
}

.who-you-are p,
.life-path p,
.recommendations p,
.life-themes p,
.affirmation blockquote {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.8;
}

.recommendations ul,
.life-themes ul {
  list-style: none;
  padding: 0;
}

.recommendations li,
.life-themes li {
  margin-bottom: 10px;
}

.recommendations li strong,
.life-themes li strong {
  color: #4a3b34;
}

/* Blockquote Styling */
.affirmation blockquote {
  background-color: #ecf0f1;
  padding: 20px;
  border-left: 5px solid #4a3b34;
  font-style: italic;
  font-size: 1.1rem;
  margin: 0;
  color: #34495e;
}

/* Adding Some Padding and Margin */
section p {
  margin-bottom: 20px;
}

.recommendations li,
.life-themes li {
  padding-left: 20px;
  position: relative;
}

.recommendations li:before,
.life-themes li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4a3b34;
  font-size: 20px;
  top: 0;
}

/* Media Query for Responsiveness */
@media (max-width: 768px) {
  #arcana-22 {
    padding: 20px;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .life-path p,
  .who-you-are p,
  .recommendations p,
  .life-themes p,
  .affirmation blockquote {
    font-size: 0.95rem;
  }

  .recommendations li,
  .life-themes li {
    font-size: 0.9rem;
  }
}
/* GENERAL STYLE */
.wrapper__calc {
  width: 800px;
  margin: 10px auto;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.text__res {
  display: block;
  padding: 10px;
}
.side__wrapper--calc {
  display: grid;
  grid-template-columns: 2fr 0.6fr;
  grid-column-gap: 10px;
}
.input__container--calc {
  background-color: #101010;
  border-radius: 5px;
}
.header__calc {
  text-align: center;
  display: block;
  padding: 20px;
}
.heading__primary--calc {
  text-transform: uppercase;
  font-size: 32px;
  display: block;
  color: #fff;
  font-family: "Inter";
}
.heading__primary--calc {
  display: block;
}
.input__row--calc {
  margin: 0 auto;
  text-align: center;
  display: block;
  padding: 20px;
  width: 100%;
}

.btn__submit--calc {
  display: block;
  padding: 10px 20px;
  width: fit-content;
  margin: 20px auto;
  font-size: 16px;
  background-color: #2e2424;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-transform: uppercase;
  color: #fff;
  border: 0px;
  border-radius: 5px;
}
.btn__submit--calc:hover {
  background-color: #251c1b;
}
.output__container--calc {
  /* display: grid;
  grid-template-columns: 2fr 1fr;
  grid-column-gap: 10px; */
}
.hidden {
}
/* CARD STYLE */
.container {
  width: 100%;
  height: 100%;
  position: relative;
  perspective: 800px;
  border-radius: 4px;
}

.card {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 6px;
  /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); */
  cursor: pointer;
  background-color: #000;
}

.card div {
  position: absolute;
  background-color: #000;
  backface-visibility: hidden;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font: 16px/1.5 "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #47525d;
}

.card .back {
  transform: rotateY(180deg);
}

.card.flipped {
  transform: rotateY(180deg);
}
.front {
  width: 100%;
  height: 100%;
  background-color: #000;
}
.front img {
  display: block;
  width: 100%;
  /* height: 100%; */
}
.back {
  width: 100%;
  height: 100%;
  background-color: #000;
}
.back img {
  display: block;
  width: 100%;
  /* height: 100%; */
}
/* FORM STYLING */

.row__calc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.label__calc {
  width: 30%;
  display: block;
  font-size: 16px;
  color: #fff;
  text-align: left;
}
.notification {
  background-color: #27ae60;
  padding: 5px;
  text-align: center;

  display: none;
}
.combined__calc {
  width: 70%;
}
.input__calc {
  width: 100%;
  background-color: transparent;
  border: 1px solid #fff;
  padding: 10px;
  color: #fff;
  font-size: 16px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1); /* Inverts colors to make it white */
}

.btn__row--calc {
  display: block;
  text-align: center;
  display: block;
}
.btn__sbmt {
  background-color: #fff;
  font-size: 16px;
  color: #000;
  padding: 15px 80px;
  text-align: center;
  display: block;
  border: 0px;
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.btn__sbmt:hover {
  background-color: #ddd;
}
@keyframes typing {
  from {
    width: 0;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}
@media (max-width: 768px) {
  .wrapper__calc {
    width: 100%;
  }
  .side__wrapper--calc {
    grid-template-columns: 1fr;
  }
  .container {
    display: none;
  }
  .input__calc {
    width: 100%;
  }
  .btn__submit--calc {
    width: 100%;
  }
}
