#indexBody {
  margin: 0;
  background: #262730;
  height: 3000px;
  font-family: "Outfit", sans-serif;
  color: #77BA99;
}
#svgWave {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 300px;
}
#wave {
  stroke: #D7C0D0;
  stroke-width: 4;
  fill: none;
}
#titleWave {
  font-size: 50px;
  font-weight: bold;
  fill: #EFF0D1;
}
#scrollHint {
  position: fixed;
  top: 280px;
  width: 100%;
  text-align: center;
  font-size: 32px;
  animation: blink 3s infinite;
}
@keyframes blink{
  0%, 100% {opacity: 1;}
  50% {opacity: 0.2;}
}
#hiddenContent {
  position: fixed;
  top: 320px;
  width: 100%;
  text-align: center;
  font-size: 32px;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  user-select: none;
}
#hiddenContent.visible {
  opacity: 1;
  pointer-events: auto;
  user-select: auto;
}
a {
  color: #D5808D;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #D33F49;
}