* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  height: 200dvh;
  background: rgb(9, 0, 31);
  color: white;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  width: 2000px;
  height: 2000px;
  background: radial-gradient(rgb(37, 1, 70), transparent 60%);
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

p {
  width: min(500px, 90%);
  text-align: center;
  color: rgb(134, 134, 134);
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}

.progress {
  width: 0;
  height: 3px;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  animation: progress-bar linear forwards;
  animation-timeline: scroll(y);
}

@keyframes progress-bar {
  100% {
    width: 100%;
  }
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}
