
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: flex-start;
  min-height: 100vh;
  text-align: center;
}


header {
  color: #0f0f0f;
  height: 150px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center; 
  font-family: "Annie Use Your Telescope";
  font-style: normal;
    background-image:
    linear-gradient(
      rgba(240,248,255,0.65),
      rgba(240,248,255,0.65)),
    url("images/secret_banner.svg"); 
}

header h1 {
  position: relative;
  font-weight: normal;
  top: -15px;
  font-size: 48px;
}

header h6 {
  font-size: 16px;
  position: relative;
  bottom: 75px;
  font-weight: lighter;
}

@media screen and (max-width: 768px) {
  header {
  background-color: #292a2c;
  color: #0f0f0f;
  height: 100px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center; 
  font-style: normal;
  }

  header h1 {
    position: relative;
    font-weight: bold;
    text-decoration: underline;
    top: 5px;
    font-size: 96px;
  }

  header h6 {
   font-size: 16px;
   position: relative;
   bottom: 40px;
   font-weight: bold;
  }
}

  a:link, a:visited {
    color: #0f0f0f; 
    text-decoration: none;
  }


#backgroundUpload {
  margin-top: 1rem;
}


main {
  width: 90%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;     
  padding: 2rem 0;
  box-sizing: border-box;
}


section {
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  align-items: center; 
  
}


#song-list ul {
  list-style: none;
  font-family: "Annie Use Your Telescope", cursive;
  padding: 0;
  margin: 0;
  width: 100%;
  background-image:
    linear-gradient(
      rgba(240,248,255,0.80),
      rgba(240,248,255,0.80)),
    url("images/secret_bg.svg");   
}

#song-list h2 {
  font-family: "Annie Use Your Telescope", cursive;
  font-size: 40px;
}

#song-list li {
  margin-bottom: 1rem;
  display: flex;
  font-family: "Annie Use Your Telescope", cursive;
  flex-direction: column;
  align-items: center;      
}



#song-list a {
  text-decoration: none;
  color: #0605df;
  font-weight: 400;
  font-family: "Annie Use Your Telescope", cursive;
  font-size: 28px;
  font-style: bold;
  display: block;
  margin-bottom: 0.2rem;
}

#song-list a:hover {
  text-decoration: underline;
}


.song-note {
  width: 80%;              
  border: none;            
  background-color: transparent; 
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;  
  font-style: italic;      
  color: #0f0f0f;
  padding: 2px 4px;
  outline: none;           
  text-align: center;  
  overflow-x: auto;         
  box-shadow: none;         
}


.song-player {
  margin-top: 1rem;
  width: 100%;
  height: 0;               
  overflow: hidden;
}

.song-player iframe {
  width: 100%;
  height: 0;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #f4f4f4;
  
  color: #0f0f0f;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

@media screen and (max-width: 600px) {
  header h1 {
    font-size: 1.5rem;
  }

  main {
    padding: 1rem 0;
  }

  .song-note input {
    font-size: 0.7rem;
    width: 90%;
  }
}
