body {
  margin: 0;
  padding: 20px 10px;
  text-align: left;
  min-height: 100vh;
  background-color: whitesmoke;
  font-family: gramond, serif;
}

#Content {
  max-width: 315px;
  margin: auto;
}

#Header {
  margin-top: 30px;
}

#SiteTitle {
  font-family: 'Alegreya', garamond, serif;
  font-weight: 700;
  font-size: 2.5em;
  margin: 0 0 8px 0;
  border-bottom: thin solid pink;
}
#SiteTitle a:link,
#SiteTitle a:visited {
  color: black;
  text-decoration: none;
}
#SiteTitle a:hover {
  color: pink;
}

#Nav {
  display: flex;
  justify-content: left;
  gap: 20px;
  font-family: 'Alegreya sans';
}

#Nav a {
  color: dimgray;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 600;
  letter-spacing: 0.02em;
}
#Nav a:hover {
  color: pink;
}

#Main {
  margin-top: 0;
  position: relative; /* Makes text selection hug text column. */
}

h1 {
  color: black;
  font-family: 'Alegreya', garamond, serif;
  font-weight: 700;
  padding: 0;
  font-size: 1.5em;
  line-height: 1.2;
  margin-top: 5px;
  margin-bottom: 10px;
}
h1 a:link,
h1 a:visited {
  color: black;
  text-decoration: none;
}
h1 a:hover {
  color: pink;
}

h2 {
  color: black;
  font-family: 'Alegreya', garamond, serif;
  margin: 0;
  font-size: 1.5em;
  font-weight: 700;
}

p {
  font-size: .9em;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 1.2em;
}
p a:link {
  color: pink;
  text-decoration: underline;
}
p a:visited {
  color: pink;
  text-decoration: none;
}
p a:hover {
  color: pink;
  text-decoration: none;
}

.band-byline {
  font-family: 'Alegreya sans';
  font-size: 0.85em;
  font-weight: 600;
  color: dimgray;
  margin: 0 0 2px 0;
}
.band-byline a:link,
.band-byline a:visited {
  color: dimgray;
  text-decoration: none;
}
.band-byline a:hover {
  color: pink;
}

.album-meta {
  font-family: 'Alegreya sans';
  font-size: 0.85em;
  color: dimgray;
  margin: 0 0 15px 0;
}
.album-meta a:link,
.album-meta a:visited {
  color: dimgray;
  text-decoration: underline;
}
.album-meta a:hover {
  color: pink;
}

.album-links {
  float: right;
  margin-left: 20px;
}

/* Clears the floated .album-links so consecutive posts on the home page
   and archive pages stack cleanly instead of the float bleeding into
   the next post. */
.album::after {
  content: "";
  display: table;
  clear: both;
}

#Main ul {
  font-family: 'Alegreya sans';
  list-style-type: none;
  text-align: left;
  width: auto;
  margin-top: 5px;
  padding-top: 7px;
  padding-left: 7px;
  padding-right: 7px;
  padding-bottom: 5px;
  line-height: 1.5;
  background-color: pink;
  border-radius: 10px;
}
#Main ul a:link { 
  color: black;
  font-weight: bold;
  text-decoration: none;
 }
 #Main ul a:hover { 
  color: black;
  background-color: lightgray;
  font-weight: bold;
  text-decoration: none;
 }
 #Main ul a:visited { 
  color: black;
  font-weight: bold;
  text-decoration: none;
 }

#footer {
  clear: both;
  margin-top: 30px;
  padding-top: 10px;
  padding-left: 10px;
  border-top: thin solid #333;
  font-size: 1em;
}
#footer p {
  color: #888;
}