html {
  scroll-behavior: smooth;
}

:root {
  --pureWhite: white;
  --secondaryWhite: #f6f8fa;
  --border: #cfcfcf;
  --pureblack: black;
  --secondaryBlack: #0f172a;
  --paragraph: #4b5563;
  --cardBackground: #f8fafc;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  z-index: 10;
}

p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  /* font-size: 16px; */
}

.button {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  color: white;
  background: #0f172a;
  border: none;
  font-size: 14px;
  border: solid 1px #0f172a;
  transition: ease-out 200ms;
  position: relative;
  z-index: 10;
  width: fit-content;
}

.button:hover {
  background: transparent;
  border: 1px solid var(--border);
  color: #0f172a;
}

.whiteButton {
  background: transparent !important;
  border: 1px solid var(--border) !important;
  color: #0f172a;
}

.whiteButton:hover {
  background: white !important;
  border: 1px solid var(--border);
  color: #0f172a;
}

header {
  background: var(--secondaryWhite);
  position: relative;
  z-index: 2;
}

.fontLightColor {
  color: rgb(51 65 85);
}

.circleBlue {
  background: #b5e5fb;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  position: absolute;
  top: 0%;
  right: -20%;
  z-index: 1;
  filter: blur(100px);
}

p,
li {
  color: var(--paragraph);
  font-weight: 300;
  line-height: 175%;
  padding-top: 30px;
  font-size: 16px;
}

li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: black;
  border-radius: 50%;
  margin-right: 12px;
}

.card {
  padding: 40px;
  border-radius: 12px;
  background: var(--cardBackground);
  border: 1px solid var(--border);
  width: fit-content;
}

.priceCard {
  padding: 40px;
}

h3 {
  font-size: 16px;
  font-weight: 700;
}

b {
  font-weight: 700 !important;
  color: #0f172a;
}

.meditationSection {
  background: var(--secondaryWhite);
}

.astrologySection {
  background: url("src/nasa-vhSz50AaFAs-unsplash.jpg");
  background-size: cover;
  background-position: center;
}

.astroCard {
  padding: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.3);
  border: solid 1px var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin: 20px 10px;
}
