 body {
  margin: 0;
  padding: 0;

font-family: 'Libre Baskerville', serif;
 /* font-size: 10px; */
  background-color: grey;
}

/* Header styles */

.relaxheader {
  background-color: black;
  color: white;
  padding: 20px;
  font-size: 90;
}

.album-blurb {

  width: 30%;
  float: left;
  padding: 5%;
}

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: 30rem;
  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;
}


.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 120px); 
  gap: 40px;
  padding: 60px;
}

.app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* The Heavyweight Button */
.app-button {
  width: 100px;
  height: 100px;
  background: #1a1a1a;
  border-radius: 22px; /* Precision iOS Squircle */
  overflow: hidden;    /* THE MASK */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
}

/* Hover "Pop" for Desktop */
.app-button:hover {
  transform: translateY(-8px) scale(1.05);
  filter: brightness(1.1);
  box-shadow: 0 12px 30px rgba(0,255,204,0.2); /* Neon glow */
  border: 1px solid rgba(0,255,204,0.3);
}

.app-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Labels */
.app-label {
  color: #e0e0e0;
  font-family: "Segoe UI", Roboto, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Specialized Gradient for Ink Ball */
.inkball-gradient {
  background: linear-gradient(145deg, #222, #000);
  font-size: 40px;
}