* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
h1, h2, h3, h4, p { 
   margin-bottom: 10px; 
 }
.navigation {
  background: #cc2952;
  color: white;
  padding: 20px;
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
}
nav a {
  text-decoration: none;
  color: white;
  transition: .4s;
}
nav a:hover {
  border-bottom: 5px white solid;
}
header {
  background: #cdaeb6;
}
svg {
  width: 100%;
  max-width: 960px;
  display: block;
  margin: 0 auto;
}
svg text {
  fill: white;
  font-family: sans-serif;
}
#subHeaderText1, 
#subHeaderText2 {
  font-size: .5rem;
  font-weight: lighter;
}
main {
  background: #f9f9f9;
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}
.songList {
  padding: 20px;
  width: 100%;
}
.songList h2 {
	margin-top: 20px;
	border-top: thick #cc2952 double;
	padding-top: 10px;
}
.song {
  border-bottom: thin #cc2952 solid;
  margin-bottom: 10px;
}
.songSample audio {
  width: 100%;
}
.imgHolder {
  padding: 20px;
}
.imgHolder img {
  display: block;
  width: 100%;
  max-width: 720px;
}

footer {
  padding: 20px;
  text-align: center;
  color: white;
  font-family: sans-serif;
  background: #2e2e2e;
}

@media screen and (max-width: 750px) {
  main {
    flex-direction: column;
  }
}