/* 3. Added smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

body {
  background: #0a0a0f;
  color: #e5e5e5;
}

/* 4. Added scroll margin to all sections with an ID to offset for the sticky header */
[id] {
  scroll-margin-top: 120px;
}

/* 1. Updated filter to generate the color #eb48a0 */
.pink-tint {
  filter: brightness(0) saturate(100%) invert(48%) sepia(51%) saturate(3015%) hue-rotate(291deg) brightness(96%) contrast(92%);
}