@import url('https://fonts.googleapis.com/css2?family=Rubik+Glitch&family=Inter:wght@300;400&display=swap');

body {
  background-color: #000;
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  padding: 3rem 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
}

h1 {
  font-family: 'Rubik Glitch', sans-serif;
  font-size: 3.5rem;
  color: #ff0055;
  text-shadow: 0 0 10px #ff0055, 0 0 20px #550022;
  margin: 0;
}

h2 {
  color: #777;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
}

main {
  padding: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

section {
  margin: 3rem 0;
}

h3 {
  font-family: 'Rubik Glitch', sans-serif;
  color: #ff0055;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

h4 {
  font-family: 'Rubik Glitch', sans-serif;
  color: #ff0055;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.album {
  margin-bottom: 2rem;
  background: #111;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 0, 85, 0.2);
}

a {
  color: #ff0055;
  text-decoration: none;
  font-weight: 400;
  transition: 0.2s;
}

a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #ff0055;
}

ul {
  list-style: none;
  padding: 0;
}

li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

footer {
  margin-top: 4rem;
  padding-bottom: 2rem;
  font-size: 0.9rem;
  color: #555;
}