body {
  background-color: #fff;
  background: #d9a7c7; /* fallback for old browsers */
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
  font-family: "Poppins", sans-serif;
  color: #fff;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 650px;
}
@keyframes pulse {
  0%,
  100% {
    color: #953070;
  }
  50% {
    color: #d9a7c7;
  }
}
.c-text {
  font-size: 5rem;
  font-weight: 600;
  margin: 30px;
  text-align: center;
}
.c-text-2 {
  font-size: 20px;
  margin: 0;
  color: #9c9c9c;
}
a {
  text-decoration: underline;
  cursor: pointer;
  color: #9c9c9c;
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.footer-toc {
  position: absolute;
  bottom: 0;
  height: 100px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 600px) {
  body {
    overflow: hidden;
  }
  .container {
    padding: 20px;
  }
  .c-text {
    font-size: 32px;
  }
  .c-text-2 {
    font-size: 16px;
    text-align: center;
  }
  .c-text-3 {
    font-size: 16px;
  }
}
