body {
  background: var(--dark-background-gradient);
  color: white;
}

h1 {
  color: white;
  font-weight: bold;
  font-size: 4rem;
  letter-spacing: 0.25rem;
}

h2 {
  color: white;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.1rem;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

h3 {
  background: var(--blue-gradient);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  color: transparent;
  -webkit-background-clip: text; /* Required for Chrome, Safari, Edge */
  background-clip: text; /* Standard syntax */
  padding: 1.25rem 0rem 0.5rem 0rem;
  align-items: center;
}

.checklist {
  border-radius: 20px;
  margin-bottom: 1rem;
  border: 1px solid rgb(60, 60, 60);
  background: rgb(20, 20, 20);
  text-align: left;
  padding: 1rem;
}

.checklist:hover {
  border-color: var(--GPAL-blue);
  box-shadow: 0px 20px 40px var(--GPAL-blue-transparent);
}

.checklist-item {
  border: 1px solid rgb(50, 50, 50);
  border-radius: 10px;
  background: var(--grey-background);
  padding: 0 2rem;
  margin-top: 1rem;
  color: white;
}

.checklist-item:hover {
  border: 1px solid rgb(50, 50, 50);
  border-radius: 10px;
  background: var(--gray-down-gradient);
  padding: 0 2rem;
  margin-top: 1rem;
  color: white;
}

.checklist-title {
  width: 100%;
  height: 100%;
  text-align: left;
  font-size: 1.25rem;
  background: transparent;
  align-items: center;
  color: white;
}

.color-and-switch {
  color: var(--GPAL-blue);
  transform: rotate(180deg);
  transition: all 0.5s;
}

.bullet {
  color: var(--GPAL-blue);
  transform: rotate(90deg);
}
