body {
  background-color: rgb(12, 80, 39);
  color: white;
  text-align: center;
  font:
    16px "Bad Script",
    sans-serif;
}
header,
main,
footer {
  /*
  When the width is minimum in Chrome (500px), 1.2rem allows the
  lyrics to be displayed without wrapping.

  The original font size (x-large) is equivalent to 1.5rem.

  3vm is a viewport unit that scales with the viewport width.
  */
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin: 0 auto;
}
h1 {
  color: yellowgreen;
  font-size: 100px;
  font-size: 6rem;
  margin-bottom: 1rem;
}
h2 {
  font-size: 2.4rem;
}
section {
  margin-top: 1rem;
}
figure {
  margin: 0 auto;
  padding: 0;
  max-width: 40rem;
  width: 80%;
}
figure img {
  width: 100%;
  height: auto;
}
a,
a:visited {
  color: white;
  font-weight: bold;
  font-size: 0.8em;
  background-color: #222;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  text-decoration: none;
  display: inline-block;
  margin: 2rem;
  border: 1px solid white;
}
/*
The font Bad Script only has a "Regular" weight and not "Bold".
Simulate "Bold" by increasing the letter spacing and adding a shadow.
*/
strong {
  letter-spacing: 3px;
  text-shadow: 1px 1px 1px white;
}
footer {
  max-width: 30rem;
  margin-top: 2rem;
  border-top: 2px solid white;
}
