:root {
  
  --text-primary: #1b1b1b;
  --text-secondary: #4e4e4e;

  --h3-margin-bottom: 0.83em
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: rgb(242, 242, 242);
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}



h1 {
  font-weight: 600;
  font-size: 1.7rem;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

h2 {
  font-weight: 500;
}

.song-list-container {
  display: flex;
  flex-direction: column;
  background-color: white;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  padding-bottom: 1rem;
  max-width: 50;
  border-radius: 0.5rem;
  box-shadow: 1px 6px 15px 5px rgba(0,0,0,0.29);
  
}

.song-list-container > h2 {
  margin-bottom: 0.7em;
  margin-top: 0;
}


ol {
  padding-left: 0;
  margin-left: 1rem;

}




#song-list > li {
  padding-bottom: 1rem;
}

#song-list > li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}


.album, .artist {
  display: inline;
  font-size: 0.75rem;
  color: var(--text-secondary);
  list-style: none;
}

.song-properties {
  margin-left: 0;
  padding-left: 0;
}

.artist:before {
  content: "|";
  margin-left: 0.2rem;
  margin-right: 0.5rem
}