/* Global reset to ensure consistent margin and box-sizing */
html {
  margin: 0;
}
/* Hide page initially */
#content {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
    min-height: 100vh;   /* full viewport height */
  width: 100%;
  position: relative;  /* so absolute children position correctly */
}

.song-list {
  list-style-type: disc;
  text-align: left;
  max-width: 600px;
  margin: 40px auto;
  padding-left: 20px;
}

.song-list li {
  margin-bottom: 10px;
}

.song-list a {
  text-decoration: none;
  color: black;
}

.song-list a:hover {
  text-decoration: underline;
}


/* Fade in after page loaded */
body.loaded #content {
  opacity: 1;
  visibility: visible;
}

/* Spinner always visible while loading */
#spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  z-index: 9999;
  color: black;
  background: white;
  padding: 10px 20px;
  border-radius: 8px;
}

/* Hide spinner after page loaded */
body.loaded #spinner {
  display: none;
}

/* Reset all margins and padding */
body {
  margin: 0;  /* Ensure no margin */
  padding: 0; /* Ensure no padding */
  font-family: 'finnshandwriting', sans-serif;
  background-color: #f0f0f0;
  font-size: 23px;
  line-height: 1.365em;
  padding-top: 10px;
  background-image: repeating-linear-gradient(to bottom, transparent 0, transparent calc(1.8em - 1px), steelblue calc(1.8em - 1px), steelblue 1.8em);
  background-attachment: local;
  background-size: 100% 1.8em;
  color: #000000;
  text-align: center;
}

#yellowstar {
  position: absolute;
  rotate: 10deg;
  height: 140px;
  width: auto;
  top: -10px;
  left: 100px;
}
#yellowstar1 {
  position: absolute;
  rotate: -15deg;
  height: 90px;
  width: auto;
  top: 90px;
  left: 30px;
}
#yellowstar2 {
  position: absolute;
  rotate: -5deg;
  height: 110px;
  width: auto;
  top: 210px;
  left: 800px;
}
#yellowstar3 {
  position: absolute;
  rotate: 22deg;
  height: 120px;
  width: auto;
  top: 410px;
  left: 960px;
}
#yellowstar4 {
  position: absolute;
  rotate: 22deg;
  height: 90px;
  width: auto;
  top: 612px;
  left: 930px;
}
#yellowstar5 {
  position: absolute;
  rotate: 0deg;
  height: 100px;
  width: auto;
  top: 990px;
  left: 600px;
}
#yellowstar6 {
  position: absolute;
  rotate: -16deg;
  height: 110px;
  width: auto;
  top: 790px;
  left: 80px;
}
#yellowstar7 {
  position: absolute;
  rotate: 22deg;
  height: 90px;
  width: auto;
  top: 1200px;
  left: 930px;
}
#yellowstar8 {
  position: absolute;
  rotate: -12deg;
  height: 160px;
  width: auto;
  top: 1270px;
  left: 660px;
}




