/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: sans-serif;
  line-height: 1.5;
  padding: 2rem;
text-align: center;
}

header h1 {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 img {
  max-width: 300px;
  height: auto;
}
section {
  margin-bottom: 4rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.bandcamp-placeholder {
  width: 100%;
  height: 120px;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-style: italic;
}

footer {
  text-align: center;
  font-size: 0.875rem;
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 4rem;
}

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.about {
    padding-right: 2rem;
    padding-left: 2rem;
}