body {
  margin: 0;
  font-family: 'Libre Baskerville';
  background-color: black;
  color: white;
}

h2 {
  font-weight: bold;
  font-size: 2.5rem;
  text-decoration: underline;
  margin-bottom: 2rem;
  text-align: center;
}

a {
  color: cyan;
}

a:visited {
  color: pink;
}

strong {
  font-weight: bold;
}

.navbar {
  display: flex;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: black;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 2rem;
}

.navbar a {
  color: white;
}

.navbar a:hover {
  color: cyan;
}

.navbar a:active {
  color: pink;
}

.navbar ul {
  display: flex;
  gap: 2rem;
}

.navbar ul.socials {
  gap: 0.5rem;
  font-size: 1.5rem;
  margin-right: 2rem;
}

hr.gothic::before {
  content: '♰─────*༺♱༻*─────♰';
  white-space: pre;
  display: block;
  font-family: monospace;
  font-size: 2rem;
  text-align: center;
  color: white;
}

hr.gothic {
  border: none;
}

.intro {
  position: relative;
  min-height: 900px;
}

.intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('intro.png');
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.intro .title {
  position: absolute;
  top: 6rem;
  left: 8rem;
  font-size: 8rem;
  font-weight: bold;
  text-shadow: 0.5rem 0.5rem 5px rgba(0, 0, 0, 0.5);
}

.about {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 4rem;
  min-height: 900px;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('about.png');
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.about .content {
  position: absolute;
  width: 600px;
  font-size: 1.75rem;
  margin: 0 4rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.about .content p {
  margin-top: 0.5rem;
}

.about .content .source {
  font-size: 1.25rem;
}

.discography {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
}

.discography::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('discography.jpg');
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: darken;
  background-position: center;
  background-size: cover;
  filter: blur(8px);
  z-index: -1;
}

.albums {
  display: flex;
  width: 1200px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto;
  gap: 4rem;
}

.album {
  border: 1px solid white;
  padding: 2rem;
}

.album img {
  width: 256px;
  height: 256px;
}

.album .caption {
  font-size: 1.125rem;
  margin-top: 1rem;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.platforms {
  display: flex;
  position: relative;
  min-height: 700px;
  padding: 4rem;
  align-items: center;
}

.platforms .content {
  display: flex;
  height: 100%;
  flex-direction: column;
  width: 800px;
  align-items: center;
}

.platforms::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('platforms.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.platforms ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.platforms a {
  display: flex;
  gap: 2rem;
  width: 500px;
  justify-content: end;
  box-sizing: border-box;
  border: 2px solid white;
  font-size: 3rem;
  color: white;
  padding: 2rem;
  border-radius: 4rem;
  text-decoration: none;
}

.platforms a:hover {
  color: cyan;
  border-color: cyan;
}

.platforms a:active {
  color: pink;
  border-color: pink;
}

.platforms .title {
  flex-grow: 1;
  text-align: center;
}

.platforms .fa-brands {
  position: absolute;
}

.newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}

.newsletter form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem;
  border: 1px solid white;
  border-radius: 4rem;
  width: 400px;
}

.newsletter .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.newsletter .form-field input {
  background-color: black;
  font-size: 1.5rem;
  color: white;
  border: 1px solid white;
  border-radius: 1rem;
  padding: 0.25rem;
}

.newsletter .form-field input:focus {
  border-color: cyan;
}

.newsletter button {
  background-color: black;
  color: white;
  border: 1px solid white;
  border-radius: 1.5rem;
  padding: 1rem;
  margin: auto;
}

.newsletter button:hover {
  color: cyan;
  border-color: cyan;
}

.newsletter button:active {
  color: pink;
  border-color: pink;
}

footer {
  border-top: 1px solid white;
  padding: 2rem;
  text-align: center;
}
