 body {
  margin: 0;
  padding: 0;

font-family: 'Libre Baskerville', serif;
  font-size: 16px;
}

/* Header styles */
header {
  background-color: black;
  color: white;
  padding: 10px;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

nav ul li {
  margin-right: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Hero section styles */
.hero {
 /* background-image: url("https://via.placeholder.com/800x400"); */
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
}

.hero p {
  font-size: 1.5rem;
  margin: 20px 0;
}

.cta {
  background-color: white;
  color: black;
  border: none;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}

.featured {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.product-card {
  width: 200px;
  margin: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
  text-align: center;
}

.product-card img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.product-card h3 {
  margin: 10px 0;
  font-size: 1.2rem;
}

.product-card p {
  margin: 10px 0;
  font-size: 1rem;
}



main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.music {
  text-align: center;
  margin-top: 50px; /* Add some margin for spacing */
}

.album-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.streaming-links {
  margin-top: 20px; /* Add some margin between album art and streaming links */
}


canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
}
/* Featured