/* CSS de l'exercice de base */

#scroll-progress {
  color: blanchedalmond;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
}

.spacer {
  height: 100vh;
}

/* CSS du TP1 avec la nav bar colorée et smiley */

#progress-container {
  position: sticky;
  top: 16px;
  left: 0;
  width: 100%;
  height: 32px;
  background-color: #f0f0f0;
  z-index: 9999;
}
#progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(120deg, #24265d 30%, #5952b2 50%, #26bffb 80%),
    #e9f3fc;
  transition: width 0.3s ease;
}
