/* Global reset to ensure consistent margin and box-sizing */
html {
  margin: 0;
}
/* Hide page initially */
#content {
    min-height: 100vh;   /* full viewport height */
  width: 100%;
  position: relative;  /* so absolute children position correctly */
}
#h1 {
  margin-top:33px;
  font-size: 55px;
}
.subtitle {
  margin-left: 100px;
  margin-right: 100px;
  font-size: 23px;
}
.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 {
 color: black !important;
  text-decoration: none !important;
}

.song-list a:hover {
  text-decoration: underline !important;
}


/* Fade in after page loaded */
body #content {
  margin: 0;  /* Ensure no margin */
  padding: 0; /* Ensure no padding */
  font-family: 'finnshandwriting', sans-serif;
  background-color: #f0f0f0;
  font-size: 23px;
  line-height: 1.53em;
  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;
}


