body {
  color: #222;
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 auto;
}

header {
  background-color: #101820;
  color: #F5F5F5;
  border-bottom: 1px solid #222;
  margin-bottom: 0;
  text-align: center;
}

header a {
  font-size: 2rem;
}

nav ul {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin: 0 1rem;
}

a {
  color: #D7263D;
  font-family: "Share Tech Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  text-align: center;
}

main {}

main p {
  padding: 0 1rem 1rem 1rem;
  margin: 0 auto;
  max-width: 800px;
  text-align: justify;
}

main h1 {
  font-size: 2rem;
}

h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}

img {
  display: block;
  max-width: 100%;
}

img.header {
  margin-bottom: 1rem;
}

.albums p {
  text-align: center;
}

.release {
   counter-reset: track;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  text-align: center;
}

.release img {
  margin: 0;
  max-width: 40%;
}

@media (max-width: 768px) {
  .release {
    flex-direction: column;
  }

  .release img {
    margin: auto;
    max-width: 100%;
    padding-bottom: 1rem;
  }
}

.release ol {
  list-style: none;
  margin-top: 0;
  line-height: 1;
}

.release li {
  counter-increment: track;
  display: flex;
  align-items: baseline;
  line-height: 1;
  text-align: left;
  margin-bottom: .4rem;
}

.release li::marker {
  font-family: "Share Tech Mono", monospace;
  font-size: 1rem;
  line-height: 1;
}

.release li::before {
  content: counter(track) ".";
  width: 3ch;
}

div.album {
  display: flex;
  justify-content: center;
  width: 100%;
}

div.album img {
  max-width: 640px;
}

dl {
  margin: 0 auto 1rem auto;
  max-width: fit-content;
  padding: 0 1rem;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 1rem;
}

dd+dt::before {
  content: "";
  display: block;
  margin-top: 1rem;
}

footer {
  background-color: #101820;
  border-top: 1px solid #222;
  color: #F5F5F5;
  margin-top: 0;
  text-align: center;
}

ul.social-links {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

ul.social-links li {
  display: inline-block;
  margin: 0 1rem;
}

ul.social-links li img{
  height: 2rem;
  width: 2rem;
}

footer p {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 0;
  padding-bottom: 2rem;
  text-transform: uppercase;
}