body {
  background-color: #2e21c7;
  color: #fff700;
  font-family: 'Gupter', 'Times New Roman', serif;
  margin: 0;
  padding: 20px;
  cursor: crosshair;
}

h1, h2, h3, h4, h5 {
  text-align: center;
}

h1 {
  font-size: 8vw;
}

h2 {
  font-size: 6vw;
}

h4 {
  font-size: 4vw;
}

h5 {
  font-size: 3vw;
}

.spacer {
  margin-top: 500px;
}

.product-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.product-card {
  background-color: #B1C1C0;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
  box-sizing: border-box;
  margin: 20px;
  min-width: 469px;
}

.product-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-description {
  margin-bottom: 20px;
}

.product-price {
  font-size: 20px;
}

.bottom-text {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.container {
  max-width: 1600px;
  margin: 0 auto;
}

.faq-section {
  margin-top: 40px;
}

.faq-card {
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  margin-bottom: 20px;
  box-sizing: border-box;
  margin: 20px;
  min-width: 469px;
}

.faq-card p {
  font-size: 3vw; /* Same size as h5 */
}

.faq-card h4 {
  text-align: left;
}

@keyframes pulse {
  0% {
    color: #fff700;
  } 
  50% {
    color: #2e21c7;
  }
  100% {
    color: #fff700;
  }
}

.pulse {
  animation: pulse 4.2s infinite;
  font-size: 0;

}

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

.pulse a {
  text-decoration: none;
  color: inherit;
}

.cross-box {
  padding: 2px 75px; /* vertical padding x horizontal padding */
  border: 1px solid #d7d7d70f;
  font-size: 16px; 

}

@keyframes backgroundpulse {
  0% {
    background-color: #fff700;
  } 
  50% {
    background-color: #2e21c7;
  }
  100% {
    background-color: #fff700;
  }
}

.backgroundpulse {
  animation: backgroundpulse 12s infinite;
}

.cube {
  position: fixed;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform-style: preserve-3d;
  z-index: -1;
}

#blobDiv {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.face {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(160, 141, 141, 0);
  /* border: 1px solid #ccc; */
}

.front {
  transform: translateZ(100px);
}

.back {
  transform: rotateY(180deg) translateZ(100px);
}

.right {
  transform: rotateY(90deg) translateZ(100px);
}

.left {
  transform: rotateY(-90deg) translateZ(100px);
}

.top {
  transform: rotateX(90deg) translateZ(100px);
}

.bottom {
  transform: rotateX(-90deg) translateZ(100px);
}

/* Media Queries */
@media (max-width: 992px) {
  .container {
    max-width: 540px;
    padding: 0 10px;
  }

  h1 {
    font-size: 12vw;
  }

  h2 {
    font-size: 10vw;
  }

  h4 {
    font-size: 8vw;
  }

  h5 {
    font-size: 6vw;
  }

  .faq-card p {
    font-size: 6vw;
}

@media (max-width: 576px) {
  .product-card {
    width: 80%;
    margin: 20px;
  }
}

@media (min-width: 577px) {
  .container {
    max-width: 720px;
    margin: 0 auto
  }

  .product-card {
    width: 70%;
    margin: 40px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 960px;
    margin: 0 auto
  }

  .product-card {
    width: 60%;
    margin: 60px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 1240px;
    margin: 0 auto
  }

  .product-card {
    width: 50%;
    margin: 40px;
  }
}


@media (min-width: 1420px) {
  .container {
    max-width: 1640px;
    margin: 0 auto
  }

  .product-card {
    width: 50%;
    margin: 20px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 2000px;
    margin: 0 auto
  }

  .product-card {
    width: calc((100% / 3) - 40px);
    margin: 20px;
  }
}

@media (min-width: 1820px) {
  .container {
    max-width: 2000px;
    margin: 0 auto
  }

  .product-card {
    width: calc((100% / 3) - 40px);
    margin: 20px;
  }
}

.typeform-container {
  display: flex;
  justify-content: center;
  width: 100%;
  position: fixed;
  bottom: 0;
}
@media (max-width: 600px) {
  .typeform-container {
    position: fixed;
    position: -webkit-sticky;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%)
  }