/* Pastel themed custom colors */
:root {
  --pastel-100: #f0f9ff;
}

.bg-pastel-100 {
  background-color: var(--pastel-100);
}


.bg-pastel-blue {
  background-color: #d6eaf8; /* Light pastel blue */
}

.text-pastel-blue {
  color: #5dade2;
}

.hover\:text-pastel-blue:hover {
  color: #5dade2;
}

.py-20 {
  padding-top: 10rem;
  padding-bottom: 5rem;
}